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:
authorBrecht Van Lommel <brechtvanlommel@gmail.com>2018-09-27 20:15:18 +0300
committerBrecht Van Lommel <brechtvanlommel@gmail.com>2018-09-27 21:11:10 +0300
commit6baea955bf562399caa9c6186601815af29b584d (patch)
tree8a7e330dd0a7600613ade4fd91582c5d77195236 /source/blender/editors/include/ED_gizmo_library.h
parent0b4c440baa567a02669c3fd790bb0b778efaaeff (diff)
UI: use new 3D viewport navigation icons and image icon in add menu.
I had to make the viewport navigation icons a bit smaller in the SVG since the edges were being clipped off, we only support 16x16 icons currently. They are a bit blurry because of this.
Diffstat (limited to 'source/blender/editors/include/ED_gizmo_library.h')
-rw-r--r--source/blender/editors/include/ED_gizmo_library.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/source/blender/editors/include/ED_gizmo_library.h b/source/blender/editors/include/ED_gizmo_library.h
index 983f3b89771..45ada740c1c 100644
--- a/source/blender/editors/include/ED_gizmo_library.h
+++ b/source/blender/editors/include/ED_gizmo_library.h
@@ -215,11 +215,12 @@ enum {
enum {
ED_GIZMO_BUTTON_SHOW_OUTLINE = (1 << 0),
+ ED_GIZMO_BUTTON_SHOW_BACKDROP = (1 << 1),
/**
* Draw a line from the origin to the offset (similar to an arrow)
* sometimes needed to show what the button edits.
*/
- ED_GIZMO_BUTTON_SHOW_HELPLINE = (1 << 1),
+ ED_GIZMO_BUTTON_SHOW_HELPLINE = (1 << 2),
};