diff options
author | Stanislaw Halik <sthalik@misaki.pl> | 2021-12-17 18:49:53 +0100 |
---|---|---|
committer | Stanislaw Halik <sthalik@misaki.pl> | 2021-12-17 20:27:17 +0100 |
commit | 432fc3796206d47da152910ba3e00bcc7a16911d (patch) | |
tree | d0513058681cd8913ffcd8b4e245988944d91440 /opentrack/main-window.hpp | |
parent | 756d2925904ca87266fc30c3d84b9c3682c73fce (diff) |
opentrack: simplify embeddable dialog logic
Diffstat (limited to 'opentrack/main-window.hpp')
-rw-r--r-- | opentrack/main-window.hpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/opentrack/main-window.hpp b/opentrack/main-window.hpp index 0cc1b727..33398d20 100644 --- a/opentrack/main-window.hpp +++ b/opentrack/main-window.hpp @@ -83,6 +83,7 @@ class main_window final : public QMainWindow, private State qt_sig::nullary toggle_tracker { this, &main_window::toggle_tracker_, Qt::QueuedConnection }; qt_sig::nullary restart_tracker { this, &main_window::restart_tracker_, Qt::QueuedConnection }; +public: void init_dylibs(); void init_tray_menu(); void init_profiles(); @@ -110,7 +111,7 @@ class main_window final : public QMainWindow, private State void show_proto_settings() { show_proto_settings_(true); } void show_filter_settings() { show_filter_settings_(true); } - void show_options_dialog(); + void show_options_dialog(bool show); void show_mapping_window(); void show_pose(); |