Skip to content

Commit

Permalink
Merge pull request #948 from ZLLentz/fix_middleclick_event_filter
Browse files Browse the repository at this point in the history
FIX: call middleclick event filter instead of dropping middle click events
  • Loading branch information
jbellister-slac authored Nov 16, 2022
2 parents 7bf65fa + 70094a7 commit dc03460
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pydm/widgets/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -1329,7 +1329,7 @@ def eventFilter(self, obj, event):
self.setToolTip(self.parseTip(self._pydm_tool_tip))
return True

return False
return super().eventFilter(obj, event)


class PyDMWritableWidget(PyDMWidget):
Expand Down

0 comments on commit dc03460

Please sign in to comment.