Stored Views: Do not use the deprecated `SMALL_TRI_RIGHT_VEC` icon

Use `CHECKMARK` instead since it's supposed to indicate the active view.
This commit is contained in:
Pablo Vazquez 2021-11-05 18:36:41 +01:00
parent d169df69b3
commit a84028f8a8
2 changed files with 2 additions and 2 deletions

View File

@ -1271,7 +1271,7 @@ class VIEW3D_PT_properties_stored_views(Panel):
subrow = box.row(align=True)
# current view indicator
if data_store.current_index == i and context.scene.stored_views.view_modified is False:
subrow.label(text="", icon='SMALL_TRI_RIGHT_VEC')
subrow.label(text="", icon='CHECKMARK')
subrow.operator("stored_views.set",
text="", icon=icon_string).index = i
subrow.prop(list[i], "name", text="")

View File

@ -236,7 +236,7 @@ class VIEW3D_PT_properties_stored_views(Panel):
subrow = box.row(align=True)
# current view indicator
if data_store.current_index == i and context.scene.stored_views.view_modified is False:
subrow.label(text="", icon='SMALL_TRI_RIGHT_VEC')
subrow.label(text="", icon='CHECKMARK')
subrow.operator("stored_views.set",
text="", icon=icon_string).index = i
subrow.prop(list[i], "name", text="")