Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2018-09-11 08:08:08 +0300
committerCampbell Barton <ideasman42@gmail.com>2018-09-11 08:08:08 +0300
commit0117a4c351e59711eaea314db3315db0a57c01ee (patch)
treee3fc6876e2c3622f329bdfb569f5f717fe064217 /source/blender/editors/interface/interface_intern.h
parentbdf215ca8246b1fe6691226b09fc855a09d40f21 (diff)
Cleanup: use UI_ prefix for block flag
Diffstat (limited to 'source/blender/editors/interface/interface_intern.h')
-rw-r--r--source/blender/editors/interface/interface_intern.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/editors/interface/interface_intern.h b/source/blender/editors/interface/interface_intern.h
index ee6fc16d8b6..350f78609a0 100644
--- a/source/blender/editors/interface/interface_intern.h
+++ b/source/blender/editors/interface/interface_intern.h
@@ -354,7 +354,7 @@ struct PieMenuData {
enum eBlockContentHints {
/* In a menu block, if there is a single sub-menu button, we add some
* padding to the right to put nicely aligned triangle icons there. */
- BLOCK_CONTAINS_SUBMENU_BUT = (1 << 0),
+ UI_BLOCK_CONTAINS_SUBMENU_BUT = (1 << 0),
};
struct uiBlock {