From e68a342b813c22ee381d4e3823c992198a9cebe9 Mon Sep 17 00:00:00 2001 From: dec05eba Date: Thu, 4 Dec 2025 23:23:57 +0100 Subject: [PATCH] Default empty text not kolourpaint --- TODO | 2 -- src/gui/ScreenshotSettingsPage.cpp | 2 +- 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/TODO b/TODO index c81a0fd..6178951 100644 --- a/TODO +++ b/TODO @@ -247,5 +247,3 @@ Remove all mgl::Clock usage in Overlay. We only need to get the time once per up Handle stopping replay/stream when recording is running (show notification that the video is saved and move the video to folder with game name). Support translations. - -Apply patch from email that adds support for launching screenshot image with external program, such as kolourpaint. Or implement simple video/image editing in gsr ui. diff --git a/src/gui/ScreenshotSettingsPage.cpp b/src/gui/ScreenshotSettingsPage.cpp index 6f9ce75..a2c8f42 100644 --- a/src/gui/ScreenshotSettingsPage.cpp +++ b/src/gui/ScreenshotSettingsPage.cpp @@ -252,7 +252,7 @@ namespace gsr { std::unique_ptr ScreenshotSettingsPage::create_custom_script_screenshot_entry() { auto list = std::make_unique(List::Orientation::VERTICAL, List::Alignment::CENTER); - auto create_custom_script_screenshot_entry = std::make_unique(&get_theme().body_font, "kolourpaint", get_theme().body_font.get_character_size() * 20); + auto create_custom_script_screenshot_entry = std::make_unique(&get_theme().body_font, "", get_theme().body_font.get_character_size() * 20); create_custom_script_screenshot_entry_ptr = create_custom_script_screenshot_entry.get(); list->add_widget(std::move(create_custom_script_screenshot_entry));