projects
/
goodguy
/
cinelerra.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
692f1e4
)
scopewindow layout tweak
author
Good Guy
<good1.2guy@gmail.com>
Wed, 15 Apr 2020 22:12:20 +0000
(16:12 -0600)
committer
Good Guy
<good1.2guy@gmail.com>
Wed, 15 Apr 2020 22:12:20 +0000
(16:12 -0600)
cinelerra-5.1/cinelerra/scopewindow.C
patch
|
blob
|
history
diff --git
a/cinelerra-5.1/cinelerra/scopewindow.C
b/cinelerra-5.1/cinelerra/scopewindow.C
index 582579a6eddfaf8e15e23ac953a9e6903152f978..9e05c15a4be6b5c827342778215f427a5d191b0a 100644
(file)
--- a/
cinelerra-5.1/cinelerra/scopewindow.C
+++ b/
cinelerra-5.1/cinelerra/scopewindow.C
@@
-489,11
+489,10
@@
void ScopeGUI::create_objects()
int margin = theme->widget_border;
int x = margin;
int y = margin;
- add_subwindow(smooth = new ScopeSmooth(this, x, y));
- y += smooth->get_h() + margin;
add_subwindow(scope_menu = new ScopeMenu(this, x, y));
scope_menu->create_objects();
- y += scope_menu->get_h() + margin;
+ int x1 = x + scope_menu->get_w() + 2*margin;
+ add_subwindow(smooth = new ScopeSmooth(this, x1, y));
create_panels();
update_toggles();