From 14c68a5577bc06b5b37821367a36a492e9f2d831 Mon Sep 17 00:00:00 2001 From: jean-emmanuel Date: Wed, 14 Jan 2026 14:13:29 +0100 Subject: [PATCH] color theme: reset color aliases before loading a theme file --- gtk2_ardour/color_theme_manager.cc | 1 + 1 file changed, 1 insertion(+) diff --git a/gtk2_ardour/color_theme_manager.cc b/gtk2_ardour/color_theme_manager.cc index 15347c2b68..037554cf3e 100644 --- a/gtk2_ardour/color_theme_manager.cc +++ b/gtk2_ardour/color_theme_manager.cc @@ -629,6 +629,7 @@ ColorThemeManager::on_color_theme_changed () if (row) { string new_theme = row[color_theme_columns.path]; + UIConfiguration::instance().color_aliases.clear (); UIConfiguration::instance().set_color_file (new_theme); } }