SUMMARY saving with python does not have the same consequences of saving as through the normal ways to do it. STEPS TO REPRODUCE 1. open a new krita instance 2. create a new document the traditional way 3. run the code to save document 4. move mouse (document becomes dirty) 5. draw something (now it should dirty) 6. save document normally with "file > save" (krita is not aware of the save and instead does a "save as" and requests the path were to save) """ import os import krita # Save Document path = os.path.normpath("C:\\Users\\EyeOd\\Desktop\\Save Teste\\teste.kra") Krita.instance().activeDocument().saveAs( path ) """ OBSERVED RESULT save is not triggering the expected reaction from the document as it would be from a normal save command. information is lost of the save that happened and because of that krita asks again the same question as you just gave it. EXPECTED RESULT after performing the save operation with the script, triggering a normal save operation would just overwrite the current file on disk and not ask where to save. SOFTWARE/OS VERSIONS Windows: 10 Qt Version: 5.12.12
I can confirm the issue, though this code works around the issue: import krita Krita.instance().activeDocument().setFileName("/home/halla/bla4.kra") Krita.instance().activeDocument().saveAs("/home/halla/bla4.kra")
Git commit f98499cb42c4f9fe79511e192d81f7cc02a144e6 by Halla Rempt. Committed on 08/12/2022 at 12:38. Pushed by rempt into branch 'master'. Set the filename in Document::saveAs M +1 -0 libs/libkis/Document.cpp https://invent.kde.org/graphics/krita/commit/f98499cb42c4f9fe79511e192d81f7cc02a144e6
Git commit 0e9e81b0d358eced883f274deee30296242eb06c by Halla Rempt. Committed on 08/12/2022 at 12:38. Pushed by rempt into branch 'krita/5.1'. Set the filename in Document::saveAs (cherry picked from commit 2fc6aef2241de7f7fdc13a60a04a26cde337b604) M +1 -0 libs/libkis/Document.cpp https://invent.kde.org/graphics/krita/commit/0e9e81b0d358eced883f274deee30296242eb06c