Limit key press to OBS by default on MacOS

This commit is contained in:
WarmUpTill
2021-09-19 12:53:17 +02:00
committed by WarmUpTill
parent e98ee64974
commit d7ec7c6e40

View File

@@ -29,7 +29,11 @@ public:
bool _leftMeta = false;
bool _rightMeta = false;
int _duration = 300; // in ms
#ifdef __APPLE__
bool _onlySendToObs = true;
#else
bool _onlySendToObs = false;
#endif
private:
static bool _registered;