File tree Expand file tree Collapse file tree 2 files changed +2
-1
lines changed
Expand file tree Collapse file tree 2 files changed +2
-1
lines changed Original file line number Diff line number Diff line change @@ -12,6 +12,7 @@ Changes to procedures:
1212Bug fixes:
1313* Fixed a crash on startup for macOS installation packages.
1414* Fixed a crash in non-interactive mode if the settings file is not specified.
15+ * Fixed a warning message displayed when exporting or editing layers of an imported (i.e. non-XCF) image.
1516* Fixed console warnings when opening the custom procedure browser.
1617
1718
Original file line number Diff line number Diff line change @@ -28,7 +28,7 @@ def duplicate_image_without_contents(image: Gimp.Image) -> Gimp.Image:
2828 new_image .undo_disable ()
2929
3030 image_file = image .get_file ()
31- if image_file is not None :
31+ if image_file is not None and image . get_imported_file () is None :
3232 new_image .set_file (image_file )
3333
3434 new_image .set_resolution (* image .get_resolution ()[1 :])
You can’t perform that action at this time.
0 commit comments