From e2ad59ce06ee856b6bbff443b4e3a90f93093066 Mon Sep 17 00:00:00 2001 From: Karol Kosek Date: Sat, 7 Aug 2021 22:44:18 +0200 Subject: [PATCH] DisplaySettings: Remove the trailing dot from tooltip and window title --- Userland/Applications/DisplaySettings/BackgroundSettings.gml | 2 +- .../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 cd593fcf334..125a2923d12 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 47c5ac8e146..676f5a3c598 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("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();