Skip to content

Commit

Permalink
audgui: Set label text only once
Browse files Browse the repository at this point in the history
  • Loading branch information
radioactiveman committed Jan 17, 2025
1 parent 8505fa7 commit 2b03793
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/libaudgui/jump-to-track.cc
Original file line number Diff line number Diff line change
Expand Up @@ -271,8 +271,7 @@ static GtkWidget * create_window ()
gtk_box_pack_start ((GtkBox *) vbox, hbox, false, false, 3);

/* filter box */
GtkWidget * search_label = gtk_label_new (_("Filter: "));
gtk_label_set_markup_with_mnemonic ((GtkLabel *) search_label, _("_Filter:"));
GtkWidget * search_label = gtk_label_new_with_mnemonic (_("_Filter:"));
gtk_box_pack_start ((GtkBox *) hbox, search_label, false, false, 0);

filter_entry = gtk_entry_new ();
Expand Down

0 comments on commit 2b03793

Please sign in to comment.