diff options
-rw-r--r-- | common/events.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/common/events.h b/common/events.h index e38b1f4ca2..be269e1969 100644 --- a/common/events.h +++ b/common/events.h @@ -188,6 +188,9 @@ public: * An example for this is the Keymapper. */ class EventMapper : public EventSource, public EventObserver { +public: + /** For event mappers resulting events should never be mapped */ + bool allowMapping() const { return false; } }; /** |