mirror of
https://github.com/1j01/textual-paint.git
synced 2024-12-22 22:31:43 +03:00
Fix unnecessary backup saving due to reload_after_save
This commit is contained in:
parent
a2000e7374
commit
f64d75df3c
@ -2611,6 +2611,8 @@ class PaintApp(App[None]):
|
|||||||
new_image = AnsiArtDocument.decode_based_on_file_extension(content, file_path)
|
new_image = AnsiArtDocument.decode_based_on_file_extension(content, file_path)
|
||||||
self.canvas.image = self.image = new_image
|
self.canvas.image = self.image = new_image
|
||||||
self.canvas.refresh(layout=True)
|
self.canvas.refresh(layout=True)
|
||||||
|
# awkward to do this in here as well as externally, but this should be updated with the new undo count
|
||||||
|
self.saved_undo_count = len(self.undos)
|
||||||
return True
|
return True
|
||||||
except UnicodeDecodeError:
|
except UnicodeDecodeError:
|
||||||
self.message_box(_("Open"), file_path + "\n" + _("Paint cannot read this file.") + "\n" + _("Unexpected file format."), "ok")
|
self.message_box(_("Open"), file_path + "\n" + _("Paint cannot read this file.") + "\n" + _("Unexpected file format."), "ok")
|
||||||
@ -2640,7 +2642,7 @@ class PaintApp(App[None]):
|
|||||||
self.message_box(_("Save"), e.localized_message, "ok")
|
self.message_box(_("Save"), e.localized_message, "ok")
|
||||||
return False
|
return False
|
||||||
if self.write_file_path(self.file_path, content, dialog_title):
|
if self.write_file_path(self.file_path, content, dialog_title):
|
||||||
self.saved_undo_count = len(self.undos)
|
self.saved_undo_count = len(self.undos) # also set in reload_after_save
|
||||||
if should_reload:
|
if should_reload:
|
||||||
# Note: this fails to preview the lost information in the case
|
# Note: this fails to preview the lost information in the case
|
||||||
# of saving the old file in prompt_save_changes,
|
# of saving the old file in prompt_save_changes,
|
||||||
@ -2688,7 +2690,7 @@ class PaintApp(App[None]):
|
|||||||
if success:
|
if success:
|
||||||
self.discard_backup() # for OLD file_path (must be done before changing self.file_path)
|
self.discard_backup() # for OLD file_path (must be done before changing self.file_path)
|
||||||
self.file_path = file_path
|
self.file_path = file_path
|
||||||
self.saved_undo_count = len(self.undos)
|
self.saved_undo_count = len(self.undos) # also set in reload_after_save
|
||||||
window.close()
|
window.close()
|
||||||
if reload_after_save:
|
if reload_after_save:
|
||||||
if not self.reload_after_save(content, file_path):
|
if not self.reload_after_save(content, file_path):
|
||||||
|
Loading…
Reference in New Issue
Block a user