Skip to content

Commit c89c611

Browse files
AsciiWolfmirkobrombin
authored andcommitted
frontend/ui: Remove underline character from main menu items
It does not seem to be supported for these items (just like the use-underline property) and causes issues with translations Fixes #4057.
1 parent fe7881c commit c89c611

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

bottles/frontend/ui/window.blp

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -77,34 +77,34 @@ template $BottlesWindow: Adw.ApplicationWindow {
7777
menu primary_menu {
7878
section {
7979
item {
80-
label: _("_Import…");
80+
label: _("Import…");
8181
action: "app.import";
8282
}
8383

8484
item {
85-
label: _("_Journal");
85+
label: _("Journal");
8686
action: "app.journal";
8787
}
8888
}
8989

9090
section {
9191
item {
92-
label: _("_Preferences");
92+
label: _("Preferences");
9393
action: "app.preferences";
9494
}
9595

9696
item {
97-
label: _("_Keyboard Shortcuts");
97+
label: _("Keyboard Shortcuts");
9898
action: "win.show-help-overlay";
9999
}
100100

101101
item {
102-
label: _("_Help");
102+
label: _("Help");
103103
action: "app.help";
104104
}
105105

106106
item {
107-
label: _("_About Bottles");
107+
label: _("About Bottles");
108108
action: "app.about";
109109
}
110110
}

0 commit comments

Comments
 (0)