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:
authorWilliam Reynish <billrey@me.com>2019-05-19 21:23:58 +0300
committerWilliam Reynish <billrey@me.com>2019-05-19 21:23:58 +0300
commit758c25d89d2da049a3caf928c5252e31d1531cd3 (patch)
tree394c21e30c642553771e9fe8bd5b3669a60d9f32 /release/scripts/startup/bl_ui/space_graph.py
parent5adb3607dc65f99e8eef538043842e23e23ee5f2 (diff)
UI: Icons update
A few icons were missed in the last update. - Added dedicated icon for showing hidden objects in the Graph Editor - Added new, more descriptive icon for F-Curve snapshots - Tweaks for Toggle Full Screen and Collections icons This should be the final set for 2.80. Thanks to Andrzej Ambroż for contributing this icon set.
Diffstat (limited to 'release/scripts/startup/bl_ui/space_graph.py')
-rw-r--r--release/scripts/startup/bl_ui/space_graph.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/release/scripts/startup/bl_ui/space_graph.py b/release/scripts/startup/bl_ui/space_graph.py
index 445f6a3fe3d..ed6dd374a6d 100644
--- a/release/scripts/startup/bl_ui/space_graph.py
+++ b/release/scripts/startup/bl_ui/space_graph.py
@@ -53,9 +53,9 @@ class GRAPH_HT_header(Header):
row = layout.row(align=True)
if st.has_ghost_curves:
- row.operator("graph.ghost_curves_clear", text="", icon='GHOST_DISABLED')
+ row.operator("graph.ghost_curves_clear", text="", icon='X')
else:
- row.operator("graph.ghost_curves_create", text="", icon='GHOST_ENABLED')
+ row.operator("graph.ghost_curves_create", text="", icon='FCURVE_SNAPSHOT')
layout.popover(
panel="GRAPH_PT_filters",