summaryrefslogtreecommitdiffhomepage
path: root/opentrack/main-settings.hpp
diff options
context:
space:
mode:
authorStanislaw Halik <sthalik@misaki.pl>2014-10-28 09:06:15 +0100
committerStanislaw Halik <sthalik@misaki.pl>2014-10-28 09:09:39 +0100
commit1863f330b2b366f504a8b510d282163737d9f715 (patch)
treeb4a1b50bb65595604ba84c07652c57d32e889b2b /opentrack/main-settings.hpp
parent5b0008b166772b5dbfc480eb3fadd1a78035b27c (diff)
rename
Diffstat (limited to 'opentrack/main-settings.hpp')
-rw-r--r--opentrack/main-settings.hpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/opentrack/main-settings.hpp b/opentrack/main-settings.hpp
index e41a23c9..83ec8968 100644
--- a/opentrack/main-settings.hpp
+++ b/opentrack/main-settings.hpp
@@ -27,6 +27,7 @@ struct main_settings {
value<QString> tracker_dll, tracker2_dll, filter_dll, protocol_dll;
axis_opts a_x, a_y, a_z, a_yaw, a_pitch, a_roll;
value<bool> tcomp_p, tcomp_tz;
+ value<bool> tray_enabled;
main_settings(pbundle b) :
b(b),
tracker_dll(b, "tracker-dll", ""),
@@ -40,6 +41,7 @@ struct main_settings {
a_pitch(b, "pitch", Pitch),
a_roll(b, "roll", Roll),
tcomp_p(b, "compensate-translation", true),
- tcomp_tz(b, "compensate-translation-disable-z-axis", false)
+ tcomp_tz(b, "compensate-translation-disable-z-axis", false),
+ tray_enabled(false, "use-system-tray", true)
{}
};