diff options
author | Karol Kosek <krkk@krkk.ct8.pl> | 2021-08-07 22:44:18 +0200 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2021-08-14 15:20:21 +0200 |
commit | e2ad59ce06ee856b6bbff443b4e3a90f93093066 (patch) | |
tree | 34dfbf14d157a0ef48ddd384108ba8dd4de66291 /Userland | |
parent | 4d477824e0c2692af30625f6231558f168fe8469 (diff) | |
download | serenity-e2ad59ce06ee856b6bbff443b4e3a90f93093066.zip |
DisplaySettings: Remove the trailing dot from tooltip and window title
Diffstat (limited to 'Userland')
-rw-r--r-- | Userland/Applications/DisplaySettings/BackgroundSettings.gml | 2 | ||||
-rw-r--r-- | Userland/Applications/DisplaySettings/BackgroundSettingsWidget.cpp | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/Userland/Applications/DisplaySettings/BackgroundSettings.gml b/Userland/Applications/DisplaySettings/BackgroundSettings.gml index cd593fcf33..125a2923d1 100644 --- a/Userland/Applications/DisplaySettings/BackgroundSettings.gml +++ b/Userland/Applications/DisplaySettings/BackgroundSettings.gml @@ -39,7 +39,7 @@ @GUI::Button { name: "wallpaper_open_button" - tooltip: "Select wallpaper from file system." + tooltip: "Select wallpaper from file system" text: "Browse..." shrink_to_fit: true } diff --git a/Userland/Applications/DisplaySettings/BackgroundSettingsWidget.cpp b/Userland/Applications/DisplaySettings/BackgroundSettingsWidget.cpp index 47c5ac8e14..676f5a3c59 100644 --- a/Userland/Applications/DisplaySettings/BackgroundSettingsWidget.cpp +++ b/Userland/Applications/DisplaySettings/BackgroundSettingsWidget.cpp @@ -61,7 +61,7 @@ void BackgroundSettingsWidget::create_frame() auto& button = *find_descendant_of_type_named<GUI::Button>("wallpaper_open_button"); 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()) return; m_wallpaper_view->selection().clear(); |