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:
authorTon Roosendaal <ton@blender.org>2004-11-09 18:59:15 +0300
committerTon Roosendaal <ton@blender.org>2004-11-09 18:59:15 +0300
commita4c582d9c5d4f0c86657cdaf217a445dd468663e (patch)
tree50739b4095d0eeeb943ce19de66ed301835a0bf8 /source/blender/src/header_text.c
parentc16e5dad1cd03f3b3a3a72d7e2dc556096a3f969 (diff)
Cosmetic stuff;
- pulldown button for textwindow header OK - color picker had no correct border around it - border around 'game framing' and 'edge settings' smaller now
Diffstat (limited to 'source/blender/src/header_text.c')
-rw-r--r--source/blender/src/header_text.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/src/header_text.c b/source/blender/src/header_text.c
index 13ddf6059e0..a465c2f1ca7 100644
--- a/source/blender/src/header_text.c
+++ b/source/blender/src/header_text.c
@@ -528,12 +528,12 @@ void text_buttons(void)
uiBlockSetEmboss(block, UI_EMBOSSP);
xmax= GetButStringLength("File");
- uiDefBlockBut(block,text_filemenu, NULL, "File", xco, 0, xmax, 20, "");
+ uiDefPulldownBut(block,text_filemenu, NULL, "File", xco, 0, xmax, 20, "");
xco+=xmax;
if(text) {
xmax= GetButStringLength("Edit");
- uiDefBlockBut(block,text_editmenu, NULL, "Edit", xco, 0, xmax, 20, "");
+ uiDefPulldownBut(block,text_editmenu, NULL, "Edit", xco, 0, xmax, 20, "");
xco+=xmax;
}
}