From 468f890a429bbf382f1534b6f89361c8206c1ce4 Mon Sep 17 00:00:00 2001 From: Robin Gareus Date: Tue, 19 Aug 2025 04:48:45 +0200 Subject: [PATCH] Fix preference enum - see 4826a90796f --- gtk2_ardour/rc_option_editor.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gtk2_ardour/rc_option_editor.cc b/gtk2_ardour/rc_option_editor.cc index 56a61d7f81..1cb20d2111 100644 --- a/gtk2_ardour/rc_option_editor.cc +++ b/gtk2_ardour/rc_option_editor.cc @@ -3434,7 +3434,7 @@ These settings will only take effect after %1 is restarted.\n\ red->add (Editing::BottomPaneOnly, _("Only ever use the bottom pane")); red->add (Editing::OpenBottomPane, _("Open bottom pane, if necessary")); red->add (Editing::PreferBottomPane, _("Use bottom pane if visible, or own window")); - red->add (Editing::BottomPaneOnly, _("Always use a separate window")); + red->add (Editing::NeverBottomPane, _("Always use a separate window")); add_option (_("Editor"), red);