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 17:47:18 +0400
committerWilliam Reynish <william@reynish.com>2009-10-15 17:47:18 +0400
commitd80074f18cc4f11086c7e69c8591b2b43980d946 (patch)
treef046a950f55bbea1194e95e6e09da73f09a9e901 /release
parent158534d40460bab6f5781384dfdc11d3b93f81bc (diff)
Updated icons. Changed some icon names that weren't blank.
Diffstat (limited to 'release')
-rw-r--r--release/datafiles/blenderbuttonsbin190499 -> 195438 bytes
-rw-r--r--release/scripts/ui/buttons_data_mesh.py4
-rw-r--r--release/scripts/ui/buttons_material.py2
-rw-r--r--release/scripts/ui/space_filebrowser.py14
-rw-r--r--release/scripts/ui/space_info.py12
5 files changed, 19 insertions, 13 deletions
diff --git a/release/datafiles/blenderbuttons b/release/datafiles/blenderbuttons
index aa7870f6712..f9a4b934969 100644
--- a/release/datafiles/blenderbuttons
+++ b/release/datafiles/blenderbuttons
Binary files differ
diff --git a/release/scripts/ui/buttons_data_mesh.py b/release/scripts/ui/buttons_data_mesh.py
index 108b4ef4371..8dc5af5cf4f 100644
--- a/release/scripts/ui/buttons_data_mesh.py
+++ b/release/scripts/ui/buttons_data_mesh.py
@@ -82,9 +82,9 @@ class DATA_PT_vertex_groups(DataButtonsPanel):
col.itemO("object.vertex_group_add", icon='ICON_ZOOMIN', text="")
col.itemO("object.vertex_group_remove", icon='ICON_ZOOMOUT', text="")
- col.itemO("object.vertex_group_copy", icon='ICON_COPYDOWN', text="")
+ col.itemO("object.vertex_group_copy", icon='ICON_COPY_ID', text="")
if ob.data.users > 1:
- col.itemO("object.vertex_group_copy_to_linked", icon='ICON_COPYDOWN', text="")
+ col.itemO("object.vertex_group_copy_to_linked", icon='ICON_LINK_AREA', text="")
group = ob.active_vertex_group
if group:
diff --git a/release/scripts/ui/buttons_material.py b/release/scripts/ui/buttons_material.py
index fbd2df381e0..e0e2fc736c0 100644
--- a/release/scripts/ui/buttons_material.py
+++ b/release/scripts/ui/buttons_material.py
@@ -59,7 +59,7 @@ class MATERIAL_PT_context_material(MaterialButtonsPanel):
col = row.column(align=True)
col.itemO("object.material_slot_add", icon='ICON_ZOOMIN', text="")
col.itemO("object.material_slot_remove", icon='ICON_ZOOMOUT', text="")
- col.itemO("object.material_slot_copy", icon='ICON_COPYDOWN', text="")
+ col.itemO("object.material_slot_copy", icon='ICON_COPY_ID', text="")
if ob.mode == 'EDIT':
row = layout.row(align=True)
diff --git a/release/scripts/ui/space_filebrowser.py b/release/scripts/ui/space_filebrowser.py
index f1ea5555787..5b0c189464f 100644
--- a/release/scripts/ui/space_filebrowser.py
+++ b/release/scripts/ui/space_filebrowser.py
@@ -12,11 +12,17 @@ class FILEBROWSER_HT_header(bpy.types.Header):
layout.template_header(menus=False)
+ row = layout.row()
+ row.itemS()
+
row = layout.row(align=True)
+ row.itemO("file.previous", text="", icon='ICON_BACK')
+ row.itemO("file.next", text="", icon='ICON_FORWARD')
row.itemO("file.parent", text="", icon='ICON_FILE_PARENT')
row.itemO("file.refresh", text="", icon='ICON_FILE_REFRESH')
- row.itemO("file.previous", text="", icon='ICON_PREV_KEYFRAME')
- row.itemO("file.next", text="", icon='ICON_NEXT_KEYFRAME')
+
+ row = layout.row()
+ row.itemS()
row = layout.row(align=True)
row.itemO("file.directory_new", text="", icon='ICON_NEWFOLDER')
@@ -24,8 +30,8 @@ class FILEBROWSER_HT_header(bpy.types.Header):
layout.itemR(params, "display", expand=True, text="")
layout.itemR(params, "sort", expand=True, text="")
- layout.itemR(params, "hide_dot")
- layout.itemR(params, "do_filter")
+ layout.itemR(params, "hide_dot", text="Hide Invisible")
+ layout.itemR(params, "do_filter", text="", icon='ICON_FILTER')
row = layout.row(align=True)
row.itemR(params, "filter_folder", text="");
diff --git a/release/scripts/ui/space_info.py b/release/scripts/ui/space_info.py
index aef90d818d1..961329ea5d0 100644
--- a/release/scripts/ui/space_info.py
+++ b/release/scripts/ui/space_info.py
@@ -48,19 +48,19 @@ class INFO_MT_file(bpy.types.Menu):
layout = self.layout
layout.operator_context = "EXEC_AREA"
- layout.itemO("wm.read_homefile", text="New")
+ layout.itemO("wm.read_homefile", text="New", icon='ICON_NEW')
layout.operator_context = "INVOKE_AREA"
- layout.itemO("wm.open_mainfile", text="Open...")
+ layout.itemO("wm.open_mainfile", text="Open...", icon='ICON_FILE_FOLDER')
layout.item_menu_enumO("wm.open_recentfile", "file", text="Open Recent")
layout.itemO("wm.recover_last_session")
layout.itemS()
layout.operator_context = "EXEC_AREA"
- layout.itemO("wm.save_mainfile", text="Save")
+ layout.itemO("wm.save_mainfile", text="Save", icon='ICON_FILE_TICK')
layout.operator_context = "INVOKE_AREA"
layout.itemO("wm.save_as_mainfile", text="Save As...")
- layout.itemO("screen.userpref_show", text="User Preferences...")
+ layout.itemO("screen.userpref_show", text="User Preferences...", icon='ICON_PREFERENCES')
layout.itemS()
layout.operator_context = "INVOKE_AREA"
@@ -78,7 +78,7 @@ class INFO_MT_file(bpy.types.Menu):
layout.itemS()
layout.operator_context = "EXEC_AREA"
- layout.itemO("wm.exit_blender", text="Quit")
+ layout.itemO("wm.exit_blender", text="Quit", icon='ICON_QUIT')
# test for expanding menus
@@ -212,7 +212,7 @@ class INFO_MT_help(bpy.types.Menu):
def draw(self, context):
layout = self.layout
- layout.itemO("help.manual", icon='ICON_URL')
+ layout.itemO("help.manual", icon='ICON_HELP')
layout.itemO("help.release_logs", icon='ICON_URL')
layout.itemS()