Default empty text not kolourpaint

This commit is contained in:
dec05eba
2025-12-04 23:23:57 +01:00
parent 11aa237821
commit e68a342b81
2 changed files with 1 additions and 3 deletions

2
TODO
View File

@@ -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.

View File

@@ -252,7 +252,7 @@ namespace gsr {
std::unique_ptr<List> ScreenshotSettingsPage::create_custom_script_screenshot_entry() {
auto list = std::make_unique<List>(List::Orientation::VERTICAL, List::Alignment::CENTER);
auto create_custom_script_screenshot_entry = std::make_unique<Entry>(&get_theme().body_font, "kolourpaint", get_theme().body_font.get_character_size() * 20);
auto create_custom_script_screenshot_entry = std::make_unique<Entry>(&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));