Scrollable toolbars has been named, and 'scrollableToolbar' class added

see #4035
This commit is contained in:
Hombre
2018-09-03 23:19:37 +02:00
parent 758299aa2c
commit b226c125ce
3 changed files with 6 additions and 0 deletions

View File

@@ -631,6 +631,7 @@ EditorPanel::EditorPanel (FilePanel* filePanel)
beforeAfterBox->pack_start (*afterBox);
MyScrolledToolbar *stb1 = Gtk::manage(new MyScrolledToolbar());
stb1->set_name("EditorToolbarTop");
stb1->add(*toolBarPanel);
editbox->pack_start (*stb1, Gtk::PACK_SHRINK, 2);
editbox->pack_start (*beforeAfterBox);
@@ -766,6 +767,7 @@ EditorPanel::EditorPanel (FilePanel* filePanel)
iops->attach_next_to (*tbRightPanel_1, Gtk::POS_RIGHT, 1, 1);
MyScrolledToolbar *stb2 = Gtk::manage(new MyScrolledToolbar());
stb2->set_name("EditorToolbarBottom");
stb2->add(*iops);
editbox->pack_start (*stb2, Gtk::PACK_SHRINK, 0);