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 <william@reynish.com>2009-10-15 11:07:01 +0400
committerWilliam Reynish <william@reynish.com>2009-10-15 11:07:01 +0400
commite6e8ba98dffc3cad88188b6d8b08e67e2008b9a8 (patch)
treec60483c7b2597ea8ff6c3e25eacc7cafb396e207
parent316d604dafba8b60367f00d3ad19e3273056a690 (diff)
Fixed some icons in user preferences. These seem to be caused to an issue in the icon file itself though, where it assumes the wrong icon when pressed. (See checkboxes in menus that become locks when enabled)
-rw-r--r--release/scripts/ui/space_userpref.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/release/scripts/ui/space_userpref.py b/release/scripts/ui/space_userpref.py
index 7af8766e256..46a56f7d133 100644
--- a/release/scripts/ui/space_userpref.py
+++ b/release/scripts/ui/space_userpref.py
@@ -469,13 +469,13 @@ class USERPREF_PT_input(bpy.types.Panel):
row = subcol.row()
if kmi.expanded:
- row.itemR(kmi, "expanded", text="", icon="ICON_TRIA_DOWN")
+ row.itemR(kmi, "expanded", text="", icon="ICON_TRIA_RIGHT")
else:
row.itemR(kmi, "expanded", text="", icon="ICON_TRIA_RIGHT")
itemrow = row.row()
itemrow.enabled = km.user_defined
- itemrow.itemR(kmi, "active", text="", icon="ICON_DOT")
+ itemrow.itemR(kmi, "active", text="", icon="ICON_CHECKBOX_DEHLT")
itemcol = itemrow.column()
itemcol.active = kmi.active
@@ -519,7 +519,7 @@ class USERPREF_PT_input(bpy.types.Panel):
subrow.itemR(kmi, "shift")
subrow.itemR(kmi, "ctrl")
subrow.itemR(kmi, "alt")
- subrow.itemR(kmi, "oskey")
+ subrow.itemR(kmi, "oskey", text="Cmd")
sub.itemR(kmi, "key_modifier", text="", event=True)
flow = itemcol.column_flow(columns=2)