Skip to content

Commit

Permalink
Don't use 'with_mnemonic' (fix missing underscores)
Browse files Browse the repository at this point in the history
  • Loading branch information
andy5995 committed Feb 16, 2024
1 parent 259571e commit e0d734c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pinner/pinner.c
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ static void pin_activate_cb(GtkMenuItem *menuitem, gpointer pdata)

GtkWidget *event_box = gtk_event_box_new();
g_hash_table_insert(doc_to_widget_map, tmp_file_name, event_box);
GtkWidget *label = gtk_label_new_with_mnemonic(doc->file_name);
GtkWidget *label = gtk_label_new(doc->file_name);
gtk_container_add(GTK_CONTAINER(event_box), label);
gtk_widget_show_all(event_box);
gtk_box_pack_start(GTK_BOX(pinned_view_vbox), event_box, FALSE, FALSE, 0);
Expand Down

0 comments on commit e0d734c

Please sign in to comment.