mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-12-04 13:30:31 +00:00
ClipboardHistory: Use titlecasing in the applet's window title
This commit is contained in:
parent
da394abe04
commit
aece6555e7
Notes:
sideshowbarker
2024-07-16 20:21:48 +09:00
Author: https://github.com/trflynn89 Commit: https://github.com/SerenityOS/serenity/commit/aece6555e7 Pull-request: https://github.com/SerenityOS/serenity/pull/18780
1 changed files with 1 additions and 1 deletions
|
@ -39,7 +39,7 @@ ErrorOr<int> serenity_main(Main::Arguments arguments)
|
|||
auto app_icon = TRY(GUI::Icon::try_create_default_icon("edit-copy"sv));
|
||||
|
||||
auto main_window = TRY(GUI::Window::try_create());
|
||||
main_window->set_title("Clipboard history");
|
||||
main_window->set_title("Clipboard History");
|
||||
main_window->set_rect(670, 65, 325, 500);
|
||||
main_window->set_icon(app_icon.bitmap_for_size(16));
|
||||
|
||||
|
|
Loading…
Reference in a new issue