Bug 462667 - Saving document with script but krita does not know
Summary: Saving document with script but krita does not know
Status: RESOLVED FIXED
Alias: None
Product: krita
Classification: Applications
Component: Scripting (show other bugs)
Version: 5.1.3
Platform: Microsoft Windows Microsoft Windows
: NOR normal
Target Milestone: ---
Assignee: Krita Bugs
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2022-12-05 10:27 UTC by keyth_qcfx2
Modified: 2022-12-08 12:38 UTC (History)
1 user (show)

See Also:
Latest Commit:
Version Fixed In:
Sentry Crash Report:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description keyth_qcfx2 2022-12-05 10:27:56 UTC
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
Comment 1 Halla Rempt 2022-12-08 12:34:03 UTC
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")
Comment 2 Halla Rempt 2022-12-08 12:38:18 UTC
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
Comment 3 Halla Rempt 2022-12-08 12:38:38 UTC
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