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>2017-11-02 17:10:03 +0300
committerCampbell Barton <ideasman42@gmail.com>2017-11-02 17:10:03 +0300
commit25f2abf314d02df0896e7678a31434d7b895b3d9 (patch)
treeb10de6626684148af215d1fa748e727e79f15c9a /source/blender/editors/interface
parent9ece0ee5fe27ab83faacec7ec56824884088bbc2 (diff)
Cleanup: minor comment correction
Diffstat (limited to 'source/blender/editors/interface')
-rw-r--r--source/blender/editors/interface/interface_widgets.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/editors/interface/interface_widgets.c b/source/blender/editors/interface/interface_widgets.c
index 78090c67770..692d5811831 100644
--- a/source/blender/editors/interface/interface_widgets.c
+++ b/source/blender/editors/interface/interface_widgets.c
@@ -69,11 +69,11 @@
#define UI_BUT_FLAGS_PUBLIC \
(UI_SELECT | UI_SCROLLED | UI_ACTIVE | UI_HAS_ICON | UI_HIDDEN | UI_SELECT_DRAW)
-/* Don't overlap w/ UI_BUT_FLAGS_PUBLIC buts. */
+/* Don't overlap w/ UI_BUT_FLAGS_PUBLIC bits. */
enum {
/* Show that holding the button opens a menu. */
UI_STATE_HOLD_ACTION = (1 << 6),
- UI_STATE_TEXT_INPUT = (1 << 7),
+ UI_STATE_TEXT_INPUT = (1 << 7),
};