| 36 | class HotKeyCommandEnable : public HotKey { |
| 37 | public: |
| 38 | HotKeyCommandEnable(int id) |
| 39 | : HotKey(id, _T("hotKeyEnable"), _("Enable eViacam"), KeyboardCode::FromWXK(WXK_F11)) {} |
| 40 | |
| 41 | void Command() override { |
| 42 | wxGetApp().GetController().SetEnabled(!wxGetApp().GetController().GetEnabled(), true); |
nothing calls this directly
no outgoing calls
no test coverage detected