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
path: root/source
diff options
context:
space:
mode:
authorAntonio Vazquez <blendergit@gmail.com>2020-10-14 16:21:02 +0300
committerAntonio Vazquez <blendergit@gmail.com>2020-10-14 16:24:52 +0300
commit459618d8606e9187a23e804b7e4bfd802d0ac2cd (patch)
treeaea47333e876fae7e5f032f6de543061c0a9b289 /source
parent9d2222b7d16c562a96f16e261b79afff444da9ba (diff)
UI: Change Invert Filter icon for UIList
This makes the icon equals to the invert icon used in all modifiers. {F8986444} Reviewed By: #user_interface, Severin, Blendify Differential Revision: https://developer.blender.org/D9194 3bb3b2
Diffstat (limited to 'source')
-rw-r--r--source/blender/editors/interface/interface_templates.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/editors/interface/interface_templates.c b/source/blender/editors/interface/interface_templates.c
index 89cd17319bd..592738bdb3b 100644
--- a/source/blender/editors/interface/interface_templates.c
+++ b/source/blender/editors/interface/interface_templates.c
@@ -5642,7 +5642,7 @@ static void uilist_draw_filter_default(struct uiList *ui_list,
"use_filter_invert",
UI_ITEM_R_TOGGLE | UI_ITEM_R_ICON_ONLY,
"",
- (ui_list->filter_flag & UILST_FLT_EXCLUDE) ? ICON_ZOOM_OUT : ICON_ZOOM_IN);
+ ICON_ARROW_LEFTRIGHT);
if ((ui_list->filter_sort_flag & UILST_FLT_SORT_LOCK) == 0) {
subrow = uiLayoutRow(row, true);