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:
authorPeter Schlaile <peter@schlaile.de>2008-02-24 16:26:27 +0300
committerPeter Schlaile <peter@schlaile.de>2008-02-24 16:26:27 +0300
commit775f8451461e8dfc009b448c73369e0fbb520907 (patch)
treec980b75cdf2c199927c616bd05c6c79d7cf05f37 /source/blender/src/header_seq.c
parenteb21b2b16e2b2fb307058f28ce78d268115b59d1 (diff)
== Sequencer ==
* Fix button drawing in header finally, sigh. * Fixes: [#8262] Hide Meta Strip does not hide contained Audio
Diffstat (limited to 'source/blender/src/header_seq.c')
-rw-r--r--source/blender/src/header_seq.c25
1 files changed, 15 insertions, 10 deletions
diff --git a/source/blender/src/header_seq.c b/source/blender/src/header_seq.c
index 6b57a9c5e17..207b2c3873d 100644
--- a/source/blender/src/header_seq.c
+++ b/source/blender/src/header_seq.c
@@ -720,9 +720,9 @@ void seq_buttons()
minchan = -BLI_countlist(&((Editing*)G.scene->ed)->metastack);
uiDefButS(block, NUM, B_REDR, "Chan:",
- xco, 0, 3.5 * XIC,YIC,
- &sseq->chanshown, minchan, MAXSEQ, 0, 0,
- "The channel number shown in the image preview. 0 is the result of all strips combined.");
+ xco, 0, 3.5 * XIC,YIC,
+ &sseq->chanshown, minchan, MAXSEQ, 0, 0,
+ "The channel number shown in the image preview. 0 is the result of all strips combined.");
xco+= 8 + XIC*3.5;
@@ -760,13 +760,18 @@ void seq_buttons()
}
} else {
/* ZOOM and BORDER */
- xco+= 8;
- uiBlockBeginAlign(block);
- uiDefIconButI(block, TOG, B_VIEW2DZOOM, ICON_VIEWZOOM, xco+=XIC,0,XIC,YIC, &viewmovetemp, 0, 0, 0, 0, "Zooms view in and out (Ctrl MiddleMouse)");
- uiDefIconBut(block, BUT, B_IPOBORDER, ICON_BORDERMOVE, xco+=XIC,0,XIC,YIC, 0, 0, 0, 0, 0, "Zooms view to fit area");
- uiBlockEndAlign(block);
-
- xco+= 16;
+ uiDefIconButI(block, TOG, B_VIEW2DZOOM,
+ ICON_VIEWZOOM,
+ xco,0,XIC,YIC, &viewmovetemp,
+ 0, 0, 0, 0,
+ "Zooms view in and out (Ctrl MiddleMouse)");
+ xco += XIC;
+ uiDefIconBut(block, BUT, B_IPOBORDER,
+ ICON_BORDERMOVE,
+ xco,0,XIC,YIC, 0,
+ 0, 0, 0, 0,
+ "Zooms view to fit area");
+ xco += 8 + XIC;
}
uiDefBut(block, BUT, B_SEQCLEAR, "Refresh", xco,0,3*XIC,YIC, 0, 0, 0, 0, 0, "Clears all buffered images in memory");