mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-09-02 15:46:33 +00:00
DisplaySettings: Remove the trailing dot from tooltip and window title
This commit is contained in:
parent
4d477824e0
commit
e2ad59ce06
Notes:
sideshowbarker
2024-07-19 17:19:23 +09:00
Author: https://github.com/krkk
Commit: e2ad59ce06
Pull-request: https://github.com/SerenityOS/serenity/pull/9272
Reviewed-by: https://github.com/awesomekling
2 changed files with 2 additions and 2 deletions
|
@ -39,7 +39,7 @@
|
||||||
|
|
||||||
@GUI::Button {
|
@GUI::Button {
|
||||||
name: "wallpaper_open_button"
|
name: "wallpaper_open_button"
|
||||||
tooltip: "Select wallpaper from file system."
|
tooltip: "Select wallpaper from file system"
|
||||||
text: "Browse..."
|
text: "Browse..."
|
||||||
shrink_to_fit: true
|
shrink_to_fit: true
|
||||||
}
|
}
|
||||||
|
|
|
@ -61,7 +61,7 @@ void BackgroundSettingsWidget::create_frame()
|
||||||
|
|
||||||
auto& button = *find_descendant_of_type_named<GUI::Button>("wallpaper_open_button");
|
auto& button = *find_descendant_of_type_named<GUI::Button>("wallpaper_open_button");
|
||||||
button.on_click = [this](auto) {
|
button.on_click = [this](auto) {
|
||||||
auto path = GUI::FilePicker::get_open_filepath(nullptr, "Select wallpaper from file system.", "/res/wallpapers");
|
auto path = GUI::FilePicker::get_open_filepath(nullptr, "Select wallpaper from file system", "/res/wallpapers");
|
||||||
if (!path.has_value())
|
if (!path.has_value())
|
||||||
return;
|
return;
|
||||||
m_wallpaper_view->selection().clear();
|
m_wallpaper_view->selection().clear();
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue