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
path: root/source
diff options
context:
space:
mode:
authorChris Want <cwant@ualberta.ca>2004-06-05 18:46:38 +0400
committerChris Want <cwant@ualberta.ca>2004-06-05 18:46:38 +0400
commit7d6f4cd67f4414fa7a6ba0293623a7569ed6a4ac (patch)
tree9020a123c7485a7651b11c70565db1a4da3be3ea /source
parent25c9dd464e4434762e5231910c56c140b7084a85 (diff)
Fixing something broken broke: ICON_BLOCKBUT_CORNER is not defined
anywhere.
Diffstat (limited to 'source')
-rw-r--r--source/blender/src/buttons_scene.c10
1 files changed, 8 insertions, 2 deletions
diff --git a/source/blender/src/buttons_scene.c b/source/blender/src/buttons_scene.c
index 45e3fb3008f..5b18c31f53d 100644
--- a/source/blender/src/buttons_scene.c
+++ b/source/blender/src/buttons_scene.c
@@ -1113,8 +1113,14 @@ static void render_panel_format(void)
block= uiNewBlock(&curarea->uiblocks, "render_panel_format", UI_EMBOSS, UI_HELV, curarea->win);
if(uiNewPanel(curarea, block, "Format", "Render", 960, 0, 318, 204)==0) return;
-
- uiDefIconTextBlockBut(block, framing_render_menu, NULL, ICON_BLOCKBUT_CORNER, "Game framing settings", 892, 169, 227, 20, "Display game framing settings");
+ uiDefBlockBut(block, framing_render_menu, NULL,
+ "Game framing settings |>> ",
+ 892, 169, 227, 20, "Display game framing settings");
+ /* uiDefIconTextBlockBut(block, framing_render_menu, NULL,
+ ICON_BLOCKBUT_CORNER,
+ "Game framing settings",
+ 892, 169, 227, 20,
+ "Display game framing settings"); */
uiBlockBeginAlign(block);
uiDefButS(block, NUM,REDRAWVIEWCAM,"SizeX:", 892 ,136,112,27, &G.scene->r.xsch, 4.0, 10000.0, 0, 0, "The image width in pixels");