mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-06 06:44:57 +01:00
change OptionEditComponent to avoid ever expanding the RHS widget horizontally
This commit is contained in:
parent
8bb6a5c875
commit
c2200e74ab
1 changed files with 6 additions and 8 deletions
|
|
@ -59,7 +59,7 @@ OptionEditorComponent::add_widget_to_page (OptionEditorPage* p, Gtk::Widget* w)
|
|||
}
|
||||
|
||||
void
|
||||
OptionEditorComponent::add_widgets_to_page (OptionEditorPage* p, Gtk::Widget* wa, Gtk::Widget* wb, bool expand)
|
||||
OptionEditorComponent::add_widgets_to_page (OptionEditorPage* p, Gtk::Widget* wa, Gtk::Widget* wb, bool /*notused*/)
|
||||
{
|
||||
int const n = p->table.property_n_rows();
|
||||
int m = n + 1;
|
||||
|
|
@ -69,13 +69,11 @@ OptionEditorComponent::add_widgets_to_page (OptionEditorPage* p, Gtk::Widget* wa
|
|||
|
||||
p->table.resize (m, 3);
|
||||
p->table.attach (*wa, 1, 2, n, n + 1, FILL);
|
||||
if (expand) {
|
||||
p->table.attach (*wb, 2, 3, n, n + 1, FILL | EXPAND);
|
||||
} else {
|
||||
Alignment* a = manage (new Alignment (0, 0.5, 0, 1.0));
|
||||
a->add (*wb);
|
||||
p->table.attach (*a, 2, 3, n, n + 1, FILL | EXPAND);
|
||||
}
|
||||
|
||||
Alignment* a = manage (new Alignment (0, 0.5, 0, 1.0));
|
||||
a->add (*wb);
|
||||
p->table.attach (*a, 2, 3, n, n + 1, FILL | EXPAND);
|
||||
|
||||
maybe_add_note (p, n + 1);
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue