From d598204fddfa85de3bb939d25d7b75c177ab8d55 Mon Sep 17 00:00:00 2001 From: Julius Date: Mon, 21 Sep 2026 16:27:15 +0300 Subject: [PATCH] Add flatpak Gimp splash screen to default blacklist The existing `gimp` entry only matches the native build. Flatpak Gimp uses the app id `org.gimp.GIMP`, so its `GIMP Startup` splash was not blacklisted by default and was being remembered/restored. Add an entry for `org.gimp.GIMP` so flatpak users get the same out-of-the-box behavior as native users. --- src/contents/ui/main.qml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/contents/ui/main.qml b/src/contents/ui/main.qml index 4e7f1a3..8db7d59 100644 --- a/src/contents/ui/main.qml +++ b/src/contents/ui/main.qml @@ -1875,7 +1875,8 @@ Item { { add: true, application: 'gimp', window: 'GIMP Startup' }, // Gimp splash screen { add: true, application: 'org.shotcut.Shotcut', window: 'Shotcut' }, // Shotcut splash screen { add: true, application: 'brave-browser', window: 'Brave' }, // Brave profile selector - { add: true, application: 'discord', window: 'Discord Updater' } // Discord updater splash screen + { add: true, application: 'discord', window: 'Discord Updater' }, // Discord updater splash screen + { add: true, application: 'org.gimp.GIMP', window: 'GIMP Startup' } // Gimp (flatpak) splash screen ]; let modified = false;