diff options
author | Stanislaw Halik <sthalik@misaki.pl> | 2023-01-20 13:28:34 +0100 |
---|---|---|
committer | Stanislaw Halik <sthalik@misaki.pl> | 2023-01-23 14:16:35 +0100 |
commit | f8b317504481e4a76cf6fab1c5e8c177144ad4e1 (patch) | |
tree | 92284bd4ef4db17885f48b93113de6af5c805e78 | |
parent | 847db383cd620b34f609cc661339aa335d74d808 (diff) |
opentrack: adjust window title
-rw-r--r-- | opentrack/main-window.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/opentrack/main-window.cpp b/opentrack/main-window.cpp index 76b60faf..4806951f 100644 --- a/opentrack/main-window.cpp +++ b/opentrack/main-window.cpp @@ -580,7 +580,8 @@ void main_window::show_pose_(const double* mapped, const double* raw) void main_window::set_title(const QString& game_title) { - static const QString version{opentrack_version}; + //static const QString version{opentrack_version}; + static const QString version = "TrackHat opentrack V3"; static const QString sep { tr(" :: ") }; static const QString pat1{ version + sep + "%1" + sep + "%2" }; static const QString pat2{ version + sep + "%1" }; |