summaryrefslogtreecommitdiffhomepage
path: root/opentrack/main-window.cpp
diff options
context:
space:
mode:
authorStanislaw Halik <sthalik@misaki.pl>2022-05-23 20:56:40 +0200
committerStanislaw Halik <sthalik@misaki.pl>2022-05-29 18:49:46 +0200
commit6706a1d43c857e7a554338976e582a5fde7b442e (patch)
tree126b4dc586e3a8980574303b408133c477761e28 /opentrack/main-window.cpp
parent73cf0e53665098b370a8722eee9f047aab864fdf (diff)
trackhat: add updater
Diffstat (limited to 'opentrack/main-window.cpp')
-rw-r--r--opentrack/main-window.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/opentrack/main-window.cpp b/opentrack/main-window.cpp
index b879e773..fd16a2c6 100644
--- a/opentrack/main-window.cpp
+++ b/opentrack/main-window.cpp
@@ -18,6 +18,7 @@
#include "compat/math.hpp"
#include "compat/sysexits.hpp"
#include "opentrack/defs.hpp"
+#include "software-update-dialog.hpp"
#include <cstring>
#include <utility>
@@ -67,6 +68,9 @@ main_window::main_window() : State(OPENTRACK_BASE_PATH + OPENTRACK_LIBRARY_PATH)
connect(&*s.b, &options::bundle_::saving, this, &main_window::register_shortcuts);
ui.btnStartTracker->setFocus();
+
+ updater = std::make_unique<update_query>(this);
+ updater->maybe_show_dialog();
}
void main_window::init_shortcuts()