mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-09-15 05:52:19 +00:00
Ladybird/AppKit: Change "Select All" text to be titlecase
Matches the rest of the menu items and Safari.
This commit is contained in:
parent
a73ac6aa3f
commit
8d4cd15cb1
Notes:
sideshowbarker
2024-07-17 05:00:08 +09:00
Author: https://github.com/trflynn89
Commit: 8d4cd15cb1
Pull-request: https://github.com/SerenityOS/serenity/pull/24489
Reviewed-by: https://github.com/nico ✅
1 changed files with 2 additions and 2 deletions
|
@ -1,5 +1,5 @@
|
||||||
/*
|
/*
|
||||||
* Copyright (c) 2023, Tim Flynn <trflynn89@serenityos.org>
|
* Copyright (c) 2023-2024, Tim Flynn <trflynn89@serenityos.org>
|
||||||
*
|
*
|
||||||
* SPDX-License-Identifier: BSD-2-Clause
|
* SPDX-License-Identifier: BSD-2-Clause
|
||||||
*/
|
*/
|
||||||
|
@ -351,7 +351,7 @@
|
||||||
keyEquivalent:@"v"]];
|
keyEquivalent:@"v"]];
|
||||||
[submenu addItem:[NSMenuItem separatorItem]];
|
[submenu addItem:[NSMenuItem separatorItem]];
|
||||||
|
|
||||||
[submenu addItem:[[NSMenuItem alloc] initWithTitle:@"Select all"
|
[submenu addItem:[[NSMenuItem alloc] initWithTitle:@"Select All"
|
||||||
action:@selector(selectAll:)
|
action:@selector(selectAll:)
|
||||||
keyEquivalent:@"a"]];
|
keyEquivalent:@"a"]];
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue