summaryrefslogtreecommitdiff
path: root/gtk2_ardour/ardour_ui_dependents.cc
diff options
context:
space:
mode:
authorBen Loftis <ben@harrisonconsoles.com>2018-02-19 08:05:55 -0600
committerBen Loftis <ben@harrisonconsoles.com>2018-02-19 08:05:55 -0600
commit1a293bb480a3019f5ee0e4e3608a540727b82c9e (patch)
tree63dccba5e4b68a0564eb278610f8e79bb63698fa /gtk2_ardour/ardour_ui_dependents.cc
parent7fd1fc1dcff93dd3a3e0e4ce65d691126fbd2158 (diff)
Add drop-shadow decorators to menu bar and transport toolbar.
Allow status bar to fill available width.
Diffstat (limited to 'gtk2_ardour/ardour_ui_dependents.cc')
-rw-r--r--gtk2_ardour/ardour_ui_dependents.cc5
1 files changed, 5 insertions, 0 deletions
diff --git a/gtk2_ardour/ardour_ui_dependents.cc b/gtk2_ardour/ardour_ui_dependents.cc
index 0918e69538..9253fcad71 100644
--- a/gtk2_ardour/ardour_ui_dependents.cc
+++ b/gtk2_ardour/ardour_ui_dependents.cc
@@ -280,8 +280,13 @@ ARDOUR_UI::setup_windows ()
main_vpacker.pack_start (top_packer, false, false);
+ ArdourWidgets::ArdourDropShadow *spacer = manage (new (ArdourWidgets::ArdourDropShadow));
+ spacer->set_size_request( -1, 4 );
+ spacer->show();
+
/* now add the transport sample to the top of main window */
+ main_vpacker.pack_start ( *spacer, false, false);
main_vpacker.pack_start (transport_frame, false, false);
main_vpacker.pack_start (_tabs, true, true);