summaryrefslogtreecommitdiff
path: root/Userland/Applications/ImageViewer
diff options
context:
space:
mode:
authorMax Wipfli <mail@maxwipfli.ch>2021-05-21 18:51:06 +0200
committerLinus Groh <mail@linusgroh.de>2021-05-21 18:41:28 +0100
commit229414b0020e6980984715626131081d62769c1f (patch)
tree1095a9d7c83db6ff258f7b46af5b4dfaf28db912 /Userland/Applications/ImageViewer
parentf27e75ac0cdbcda6c8e748f16feb308211aec6d9 (diff)
downloadserenity-229414b0020e6980984715626131081d62769c1f.zip
Applications: Use titlecase and distinct underlined characters in menus
This changes (context) menus across the system to conform to titlecase capitalization and to not underline the same character twice (for accessing actions with Alt).
Diffstat (limited to 'Userland/Applications/ImageViewer')
-rw-r--r--Userland/Applications/ImageViewer/main.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Applications/ImageViewer/main.cpp b/Userland/Applications/ImageViewer/main.cpp
index 1996cadbed..f6cb3f1680 100644
--- a/Userland/Applications/ImageViewer/main.cpp
+++ b/Userland/Applications/ImageViewer/main.cpp
@@ -185,7 +185,7 @@ int main(int argc, char** argv)
GUI::Desktop::the().set_wallpaper(widget.path());
});
- auto go_first_action = GUI::Action::create("Go to &First", { Mod_None, Key_Home }, Gfx::Bitmap::load_from_file("/res/icons/16x16/go-first.png"),
+ auto go_first_action = GUI::Action::create("&Go to First", { Mod_None, Key_Home }, Gfx::Bitmap::load_from_file("/res/icons/16x16/go-first.png"),
[&](auto&) {
widget.navigate(ViewWidget::Directions::First);
});