Skip to content

Commit d0fad05

Browse files
author
Olivier Butler
committed
removed push start with beacon
1 parent c70383d commit d0fad05

File tree

3 files changed

+9
-5
lines changed

3 files changed

+9
-5
lines changed

data/po/strings.pot

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
msgid ""
88
msgstr "Project-Id-Version: PACKAGE VERSION\n"
99
"Report-Msgid-Bugs-To: \n"
10-
"POT-Creation-Date: 2025-01-13 07:48+0200\n"
10+
"POT-Creation-Date: 2025-01-18 19:47+0200\n"
1111
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
1212
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
1313
"Language-Team: LANGUAGE <LL@li.org>\n"

src/cfg.cpp

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -322,8 +322,9 @@ void SettingsWindow::LoadConfig(void) {
322322
tug_starts_next_plane = B_FALSE;
323323
(void)conf_get_b(bp_conf, "tug_starts_next_plane", &tug_starts_next_plane);
324324

325-
tug_auto_start = B_FALSE;
326-
(void)conf_get_b(bp_conf, "tug_auto_start", &tug_auto_start);
325+
// feature disabled for now
326+
// tug_auto_start = B_FALSE;
327+
// (void)conf_get_b(bp_conf, "tug_auto_start", &tug_auto_start);
327328

328329
initMonitorOrigin();
329330

@@ -695,6 +696,7 @@ void SettingsWindow::buildInterface() {
695696
(void)conf_set_b(bp_conf, "tug_starts_next_plane", tug_starts_next_plane);
696697
}
697698

699+
/*
698700
if (!tug_starts_next_plane) {
699701
ImGui::BeginDisabled();
700702
tug_auto_start = B_FALSE;
@@ -712,7 +714,7 @@ void SettingsWindow::buildInterface() {
712714
if (!tug_starts_next_plane) {
713715
ImGui::EndDisabled();
714716
}
715-
717+
*/
716718
ImGui::TableNextRow();
717719
ImGui::TableNextColumn();
718720
ImGui::Text("%s", _("Eye Tracker Plugin Exclusion"));

src/xplane.c

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1062,7 +1062,9 @@ bp_priv_enable(void)
10621062
(void) conf_get_b(bp_conf,"tug_starts_next_plane", &tug_starts_next_plane);
10631063

10641064
tug_auto_start = B_FALSE;
1065-
(void) conf_get_b(bp_conf,"tug_auto_start", &tug_auto_start);
1065+
// feature disabled for now.. waiting for a better UI paradigm
1066+
//(void) conf_get_b(bp_conf,"tug_auto_start", &tug_auto_start);
1067+
//
10661068

10671069
prefs_enable = B_TRUE;
10681070
start_pb_enable = B_TRUE;

0 commit comments

Comments
 (0)