change OptionEditComponent to avoid ever expanding the RHS widget horizontally

This commit is contained in:
Paul Davis 2019-06-06 18:29:48 -06:00
parent 8bb6a5c875
commit c2200e74ab

View file

@ -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);
}