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 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 const n = p->table.property_n_rows();
int m = n + 1; 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.resize (m, 3);
p->table.attach (*wa, 1, 2, n, n + 1, FILL); p->table.attach (*wa, 1, 2, n, n + 1, FILL);
if (expand) {
p->table.attach (*wb, 2, 3, n, n + 1, FILL | EXPAND); Alignment* a = manage (new Alignment (0, 0.5, 0, 1.0));
} else { a->add (*wb);
Alignment* a = manage (new Alignment (0, 0.5, 0, 1.0)); p->table.attach (*a, 2, 3, n, n + 1, FILL | EXPAND);
a->add (*wb);
p->table.attach (*a, 2, 3, n, n + 1, FILL | EXPAND);
}
maybe_add_note (p, n + 1); maybe_add_note (p, n + 1);
} }