diff options
author | Andreas Kling <kling@serenityos.org> | 2021-04-12 15:24:17 +0200 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2021-04-12 15:24:17 +0200 |
commit | 767bd8cc889bf62e781b7173dc7d858e71021562 (patch) | |
tree | 209182d29158694411a12b6fe972edf815dc5ce3 /Userland/Services/WindowServer/Menu.cpp | |
parent | fbbb4b33955ec089dc8b26df76f59e25ba49d37d (diff) | |
download | serenity-767bd8cc889bf62e781b7173dc7d858e71021562.zip |
WindowServer: Strip Alt-shortcut marker ('&') when measuring menu texts
We were including these markers when computing the sizes of menus,
causing them to get a little too much padding.
Diffstat (limited to 'Userland/Services/WindowServer/Menu.cpp')
-rw-r--r-- | Userland/Services/WindowServer/Menu.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Services/WindowServer/Menu.cpp b/Userland/Services/WindowServer/Menu.cpp index 715a23437d..0b0c10380e 100644 --- a/Userland/Services/WindowServer/Menu.cpp +++ b/Userland/Services/WindowServer/Menu.cpp @@ -115,7 +115,7 @@ int Menu::content_width() const if (item.type() != MenuItem::Text) continue; auto& use_font = item.is_default() ? Gfx::FontDatabase::default_bold_font() : font(); - int text_width = use_font.width(item.text()); + int text_width = use_font.width(Gfx::parse_ampersand_string(item.text())); if (!item.shortcut_text().is_empty()) { int shortcut_width = use_font.width(item.shortcut_text()); widest_shortcut = max(shortcut_width, widest_shortcut); |