[Bf-blender-cvs] [b1b0781c1ed] master: Drivers: shorten the security restriction warning.

Alexander Gavrilov noreply at git.blender.org
Sun Jun 16 16:15:10 CEST 2019


Commit: b1b0781c1ed7148efc59287368f4b812a2a18c6e
Author: Alexander Gavrilov
Date:   Sun Jun 16 17:14:57 2019 +0300
Branches: master
https://developer.blender.org/rBb1b0781c1ed7148efc59287368f4b812a2a18c6e

Drivers: shorten the security restriction warning.

A longer string is truncated in the popover, which can't be resized.

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

M	source/blender/editors/space_graph/graph_buttons.c

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

diff --git a/source/blender/editors/space_graph/graph_buttons.c b/source/blender/editors/space_graph/graph_buttons.c
index 301fefaf989..c727c5225c9 100644
--- a/source/blender/editors/space_graph/graph_buttons.c
+++ b/source/blender/editors/space_graph/graph_buttons.c
@@ -957,7 +957,7 @@ static void graph_draw_driver_settings_panel(uiLayout *layout,
     else if (!BKE_driver_has_simple_expression(driver)) {
       if ((G.f & G_FLAG_SCRIPT_AUTOEXEC) == 0) {
         /* TODO: Add button to enable? */
-        uiItemL(col, TIP_("WARNING: Python expressions limited for security"), ICON_ERROR);
+        uiItemL(col, TIP_("Python restricted for security"), ICON_ERROR);
       }
       else {
         uiItemL(col, TIP_("Slow Python expression"), ICON_INFO);



More information about the Bf-blender-cvs mailing list