Skip to content

Commit

Permalink
Fix QgsFloatingWidget discards some events
Browse files Browse the repository at this point in the history
  • Loading branch information
nyalldawson committed May 17, 2017
1 parent 2435dbc commit e260be1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/gui/qgsfloatingwidget.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -207,7 +207,7 @@ bool QgsFloatingWidgetEventFilter::eventFilter( QObject *object, QEvent *event )
case QEvent::Move:
case QEvent::Resize:
emit anchorPointChanged();
return true;
return false;
default:
return false;
}
Expand Down

0 comments on commit e260be1

Please sign in to comment.