Fixing #4300: "RawTherapee theme bug when editing node in/out values"

This commit is contained in:
Hombre
2018-01-14 13:41:09 +01:00
parent b762804b80
commit cbcb096339

View File

@@ -135,7 +135,11 @@ void CoordinateAdjuster::createWidgets(const std::vector<Axis> &axis)
box->attach_next_to(*(currAdjuster->spinButton), Gtk::POS_LEFT, 1, 1);
box->attach_next_to(*(currAdjuster->label), Gtk::POS_LEFT, 1, 1);
add(*box);
Gtk::FlowBoxChild *fbChild = Gtk::manage(new Gtk::FlowBoxChild());
fbChild->set_can_focus(false);
fbChild->add(*box);
add(*fbChild);
}
}