From 7e38bbd79e0bb576d49da1d33cb7b65eb6ae942b Mon Sep 17 00:00:00 2001 From: Ivailo Monev Date: Thu, 1 Jun 2023 05:30:37 +0300 Subject: [PATCH] kdeplasma-addons: use URL save ID appropriate for the POTD wallpaper plugin there is a frame applet and the dialogs for the POTD wallpaper and frame applet should not share the same save URL (questionably). perhaps there should be feature to save the URL based on mime type group, for example save "text/plain" and "text/x-patch" as the same URL for all applications by default unless a custom save location has been specified programatically Signed-off-by: Ivailo Monev --- kdeplasma-addons/wallpapers/potd/potd.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kdeplasma-addons/wallpapers/potd/potd.cpp b/kdeplasma-addons/wallpapers/potd/potd.cpp index 703f321a..5abd0b0e 100644 --- a/kdeplasma-addons/wallpapers/potd/potd.cpp +++ b/kdeplasma-addons/wallpapers/potd/potd.cpp @@ -126,7 +126,7 @@ void PoTD::getSaveFileLocation() } KFileDialog *fd = new KFileDialog( - KUrl("kfiledialog:///frameplasmoid"), + KUrl("kfiledialog:///potdwallpaper"), KImageIO::pattern(KImageIO::Writing), 0 );