From f0722ae58721f61fedec6d957642dacddf751eec Mon Sep 17 00:00:00 2001 From: "Liam P. White" Date: Wed, 10 Jun 2015 09:56:12 -0400 Subject: 1357805+1227193 revisited Fixed bugs: - https://launchpad.net/bugs/1227193 - https://launchpad.net/bugs/1357805 (bzr r14199) --- src/widgets/stroke-style.cpp | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'src/widgets') diff --git a/src/widgets/stroke-style.cpp b/src/widgets/stroke-style.cpp index 482ca7af4..d05b3b994 100644 --- a/src/widgets/stroke-style.cpp +++ b/src/widgets/stroke-style.cpp @@ -450,7 +450,11 @@ StrokeStyle::makeRadioButton(Gtk::RadioButtonGroup &grp, */ void StrokeStyle::markerSelectCB(MarkerComboBox *marker_combo, StrokeStyle *spw, SPMarkerLoc const /*which*/) { - if (spw->update) { + bool markers_update = spw->startMarkerCombo->update() || + spw->midMarkerCombo->update() || + spw->endMarkerCombo->update(); + + if (spw->update || markers_update) { return; } -- cgit v1.2.3