From 26ce571baf88e1f87cc011333c3a2b5543646459 Mon Sep 17 00:00:00 2001 From: Robin Gareus Date: Sat, 25 May 2024 16:10:34 +0200 Subject: [PATCH] Fix build, partially revert 5a188fba --- gtk2_ardour/ardour_ui_dialogs.cc | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/gtk2_ardour/ardour_ui_dialogs.cc b/gtk2_ardour/ardour_ui_dialogs.cc index 6fd3e1edd7..cbbac7adac 100644 --- a/gtk2_ardour/ardour_ui_dialogs.cc +++ b/gtk2_ardour/ardour_ui_dialogs.cc @@ -501,10 +501,11 @@ ARDOUR_UI::step_up_through_tabs () candidates.push_back (trigger_page); } +#ifndef LIVETRAX if (rc_option_editor->tabbed()) { candidates.push_back (rc_option_editor); } - +#endif if (candidates.size() < 2) { /* nothing to be done with zero or one visible in tabs */ return; @@ -553,10 +554,11 @@ ARDOUR_UI::step_down_through_tabs () candidates.push_back (trigger_page); } +#ifndef LIVETRAX if (rc_option_editor->tabbed()) { candidates.push_back (rc_option_editor); } - +#endif if (candidates.size() < 2) { /* nothing to be done with zero or one visible in tabs */ return;