From 0dce68333f18ce346091dc672bc51e789438c30e Mon Sep 17 00:00:00 2001 From: Harley Acheson Date: Wed, 19 Feb 2025 00:19:08 +0100 Subject: [PATCH] UI: Vertically Aligned Grip Icon Add a variation of the current Grip icon that is vertically-aligned. the current ICON_GRIP works great when it has lots of horizontal space, but ICON_GRIP_V might be needed for horizontally constrained uses. Pull Request: https://projects.blender.org/blender/blender/pulls/134777 --- release/datafiles/icons_svg/grip_v.svg | 1 + source/blender/editors/datafiles/CMakeLists.txt | 1 + source/blender/editors/include/UI_icons.hh | 1 + 3 files changed, 3 insertions(+) create mode 100644 release/datafiles/icons_svg/grip_v.svg diff --git a/release/datafiles/icons_svg/grip_v.svg b/release/datafiles/icons_svg/grip_v.svg new file mode 100644 index 00000000000..a858e0891e7 --- /dev/null +++ b/release/datafiles/icons_svg/grip_v.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/source/blender/editors/datafiles/CMakeLists.txt b/source/blender/editors/datafiles/CMakeLists.txt index 5d7a42a7e40..1ed25dcd347 100644 --- a/source/blender/editors/datafiles/CMakeLists.txt +++ b/source/blender/editors/datafiles/CMakeLists.txt @@ -401,6 +401,7 @@ if(WITH_BLENDER) greasepencil_layer_group grid grip + grip_v group group_bone group_uvs diff --git a/source/blender/editors/include/UI_icons.hh b/source/blender/editors/include/UI_icons.hh index 62a98646d03..adce49950d1 100644 --- a/source/blender/editors/include/UI_icons.hh +++ b/source/blender/editors/include/UI_icons.hh @@ -122,6 +122,7 @@ DEF_ICON(FULLSCREEN_EXIT) DEF_ICON(GHOST_DISABLED) DEF_ICON(GHOST_ENABLED) DEF_ICON(GRIP) +DEF_ICON(GRIP_V) DEF_ICON(HAND) DEF_ICON(HELP) DEF_ICON(LINKED)