From 57b47ebb284c03fd6d9863bf0ec9ddbb672e2034 Mon Sep 17 00:00:00 2001 From: Joshua Leung Date: Wed, 23 May 2018 15:03:59 +0200 Subject: Drivers UI Cleanup (Part of T55145) * Remove "Show Debug Info" option. Everyone has it turned on all the time, since it's just useful to have * Make the "Remove Driver" button less prominent. It doesn't happen that much, so it shouldn't take up as much room * Make "expressions" textbox wider (i.e. taking up the whole column width) by separating the label and textbox on separate lines. * Rename "Add Variable" button to make it clearer to users what "variables" may be (i.e. they serve as a way to specify Inputs, just like adding a "Source Data" node in a nodetree) * Regroup buttons --- source/blender/makesdna/DNA_anim_types.h | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'source/blender/makesdna/DNA_anim_types.h') diff --git a/source/blender/makesdna/DNA_anim_types.h b/source/blender/makesdna/DNA_anim_types.h index 13656c543ce..c2248778c46 100644 --- a/source/blender/makesdna/DNA_anim_types.h +++ b/source/blender/makesdna/DNA_anim_types.h @@ -438,6 +438,7 @@ typedef enum eDriver_Types { } eDriver_Types; /* driver flags */ +/* note: (1<<5) is deprecated; was "DRIVER_FLAG_SHOWDEBUG" */ typedef enum eDriver_Flags { /* driver has invalid settings (internal flag) */ DRIVER_FLAG_INVALID = (1<<0), @@ -450,8 +451,6 @@ typedef enum eDriver_Flags { DRIVER_FLAG_RECOMPILE = (1<<3), /* the names are cached so they don't need have python unicode versions created each time */ DRIVER_FLAG_RENAMEVAR = (1<<4), - /* intermediate values of driver should be shown in the UI for debugging purposes */ - DRIVER_FLAG_SHOWDEBUG = (1<<5), /* include 'self' in the drivers namespace. */ DRIVER_FLAG_USE_SELF = (1<<6), } eDriver_Flags; -- cgit v1.2.3