Fix show/hide of editor summary.

git-svn-id: svn://localhost/ardour2/branches/3.0@6385 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
Carl Hetherington 2009-12-22 01:13:06 +00:00
parent ca602cf216
commit e8e63d8eac
3 changed files with 7 additions and 7 deletions

View file

@ -577,12 +577,11 @@ Editor::Editor ()
summary_frame->add (*_summary);
summary_frame->show ();
HBox* summary_hbox = manage (new HBox);
summary_hbox->pack_start (*summary_arrows_left, false, false);
summary_hbox->pack_start (*summary_frame, true, true);
summary_hbox->pack_start (*summary_arrows_right, false, false);
_summary_hbox.pack_start (*summary_arrows_left, false, false);
_summary_hbox.pack_start (*summary_frame, true, true);
_summary_hbox.pack_start (*summary_arrows_right, false, false);
editor_summary_pane->pack2(*summary_hbox);
editor_summary_pane->pack2 (_summary_hbox);
edit_pane.pack1 (*editor_summary_pane, true, true);
edit_pane.pack2 (the_notebook, false, true);