[Bf-blender-cvs] [c1e342136df] master: UI: Add shift-click hint to library overrides button tooltip

Julian Eisel noreply at git.blender.org
Wed Aug 31 15:04:52 CEST 2022


Commit: c1e342136dfb0b56e3dc1d948f97816ead5cd597
Author: Julian Eisel
Date:   Wed Aug 31 15:03:35 2022 +0200
Branches: master
https://developer.blender.org/rBc1e342136dfb0b56e3dc1d948f97816ead5cd597

UI: Add shift-click hint to library overrides button tooltip

This information was missing and made the feature hard to discover.

===================================================================

M	source/blender/editors/interface/interface_templates.c

===================================================================

diff --git a/source/blender/editors/interface/interface_templates.c b/source/blender/editors/interface/interface_templates.c
index be4aa4b1d94..651c28c1a59 100644
--- a/source/blender/editors/interface/interface_templates.c
+++ b/source/blender/editors/interface/interface_templates.c
@@ -1365,20 +1365,22 @@ static void template_ID(const bContext *C,
       }
     }
     else if (ID_IS_OVERRIDE_LIBRARY(id)) {
-      but = uiDefIconBut(block,
-                         UI_BTYPE_BUT,
-                         0,
-                         ICON_LIBRARY_DATA_OVERRIDE,
-                         0,
-                         0,
-                         UI_UNIT_X,
-                         UI_UNIT_Y,
-                         NULL,
-                         0,
-                         0,
-                         0,
-                         0,
-                         TIP_("Library override of linked data-block, click to make fully local"));
+      but = uiDefIconBut(
+          block,
+          UI_BTYPE_BUT,
+          0,
+          ICON_LIBRARY_DATA_OVERRIDE,
+          0,
+          0,
+          UI_UNIT_X,
+          UI_UNIT_Y,
+          NULL,
+          0,
+          0,
+          0,
+          0,
+          TIP_("Library override of linked data-block, click to make fully local, "
+               "Shift + Click to clear the library override and toggle if it can be edited"));
       UI_but_funcN_set(
           but, template_id_cb, MEM_dupallocN(template_ui), POINTER_FROM_INT(UI_ID_OVERRIDE));
     }



More information about the Bf-blender-cvs mailing list