Skip to content

Commit

Permalink
Remove legacy annotation for GTK mode
Browse files Browse the repository at this point in the history
I am willing to maintain GTK support for Audacious since I prefer it over Qt.
  • Loading branch information
radioactiveman committed Feb 17, 2024
1 parent 8989ef8 commit a9d6280
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/libaudgui/prefs-window.cc
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@ static void iface_combo_changed ();
static void * iface_create_prefs_box ();

static const PreferencesWidget appearance_page_widgets[] = {
WidgetLabel (N_("Audacious is running in GTK (legacy) mode.")),
WidgetLabel (N_("Audacious is running in GTK mode.")),
#ifdef USE_QT
WidgetBox ({{iface_restart_widgets}, true}, WIDGET_CHILD),
#else
Expand Down
4 changes: 2 additions & 2 deletions src/libaudqt/prefs-window-qt.cc
Original file line number Diff line number Diff line change
Expand Up @@ -225,7 +225,7 @@ static void iface_restart_in_gtk_mode()
}

static const PreferencesWidget iface_restart_widgets[] = {
WidgetButton(N_("Restart in GTK (legacy) mode"),
WidgetButton(N_("Restart in GTK mode"),
{iface_restart_in_gtk_mode}),
};
#endif
Expand Down Expand Up @@ -264,7 +264,7 @@ static const PreferencesWidget appearance_page_widgets[] = {
#ifdef USE_GTK
WidgetBox({{iface_restart_widgets}, true}, WIDGET_CHILD),
#else
WidgetLabel(N_("GTK (legacy) mode is unavailable in this build."),
WidgetLabel(N_("GTK mode is unavailable in this build."),
WIDGET_CHILD),
#endif
WidgetCombo(N_("Interface:"),
Expand Down

0 comments on commit a9d6280

Please sign in to comment.