diff --git a/src/Gui/Widgets/ScaleWidget.cpp b/src/Gui/Widgets/ScaleWidget.cpp index 2c1367e..ecb5853 100644 --- a/src/Gui/Widgets/ScaleWidget.cpp +++ b/src/Gui/Widgets/ScaleWidget.cpp @@ -139,6 +139,9 @@ void ScaleWidget::onMouseDragged(ofMouseEventArgs & args){ GuiWidgetEvent e; e.args = args; + + // Make sure that the args type is Dragged + e.args.type = e.args.Dragged; ofNotifyEvent(guiWidgetEvent, e, this); } }