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-08-18 16:10:12 +0400
committerWilliam Reynish <william@reynish.com>2009-08-18 16:10:12 +0400
commit6e10e93965291f011f48a0fb2cf0b3c149a8a1e6 (patch)
treec05f6d65088d4d3b2449dcbb6c45bddf4aa4e1f8 /source/blender/editors
parent34b947d0bc0ef196f11b3ac4370d991b2faa2020 (diff)
Renamed Buttons Window to Properties, for these reasons:
1) This fits with our splitting the old Buttons Window into Tools and Properties 2) The name Buttons Window doesn't communicate what it is for, only that it includes buttons. Of course, most other editors include a fair amount of 'buttons' too. 3) A 'button' is not usually what you'd associate with a slider, number field, checkbox or menu. Really there are hardly any true buttons in this window space. Also added some notifiers to sequencer RNA, though there seems to be some refresh errors in the image preview area.
Diffstat (limited to 'source/blender/editors')
-rw-r--r--source/blender/editors/screen/area.c51
1 files changed, 27 insertions, 24 deletions
diff --git a/source/blender/editors/screen/area.c b/source/blender/editors/screen/area.c
index 296c38fa51a..ff84542a7cd 100644
--- a/source/blender/editors/screen/area.c
+++ b/source/blender/editors/screen/area.c
@@ -1041,39 +1041,42 @@ void ED_area_prevspace(bContext *C)
static char *windowtype_pup(void)
{
return(
- "Window type:%t" //14
- "|3D View %x1" //30
-
- "|%l" // 33
-
- "|Graph Editor %x2" //54
- "|DopeSheet %x12" //73
- "|NLA Editor %x13" //94
-
- "|%l" //97
-
- "|UV/Image Editor %x6" //117
+ "Window type:%t"
+ "|3D View %x1"
+
+ "|%l"
+ "|%l"
- "|Video Sequence Editor %x8" //143
- "|Timeline %x15" //163
- // "|Audio Window %x11" //163
- "|Text Editor %x9" //179
+ "|Timeline %x15"
+ "|Graph Editor %x2"
+ "|DopeSheet %x12"
+ "|NLA Editor %x13"
- "|%l" //192
+ "|%l"
+ "|%l"
+ "|UV/Image Editor %x6"
- "|User Preferences %x7" //213
- "|Outliner %x3" //232
- "|Buttons Window %x4" //251
+ "|Video Sequence Editor %x8"
+ "|Text Editor %x9"
"|Node Editor %x16"
"|Logic Editor %x17"
- "|%l" //254
- "|File Browser %x5" //290
+ "|%l"
+ "|%l"
+
+ "|Properties %x4"
+ "|User Preferences %x7"
+ "|Outliner %x3"
+
+ "|%l"
+ "|%l"
+
+ "|File Browser %x5"
- "|%l" //293
+ "|%l"
+ "|%l"
- // "|Scripts Window %x14"//313
"|Console %x18"
);
}