summaryrefslogtreecommitdiffstats
path: root/src/widgets
diff options
context:
space:
mode:
authorLiam P. White <inkscapebrony@gmail.com>2015-06-10 13:56:12 +0000
committerLiam P. White <inkscapebrony@gmail.com>2015-06-10 13:56:12 +0000
commitf0722ae58721f61fedec6d957642dacddf751eec (patch)
tree82b4953eee33b407080aecafedda19cb65a064ca /src/widgets
parentcmake: Add some missing header files to CMakeLists.txt (diff)
downloadinkscape-f0722ae58721f61fedec6d957642dacddf751eec.tar.gz
inkscape-f0722ae58721f61fedec6d957642dacddf751eec.zip
1357805+1227193 revisited
Fixed bugs: - https://launchpad.net/bugs/1227193 - https://launchpad.net/bugs/1357805 (bzr r14199)
Diffstat (limited to 'src/widgets')
-rw-r--r--src/widgets/stroke-style.cpp6
1 files changed, 5 insertions, 1 deletions
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;
}