https://bugs.kde.org/show_bug.cgi?id=487963
Dmitry Kazakov <dimul...@gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|CONFIRMED |RESOLVED Resolution|--- |INTENTIONAL CC| |dimul...@gmail.com --- Comment #2 from Dmitry Kazakov <dimul...@gmail.com> --- Hi, IPv6! When you modify the selection, you need to first duplicate the selection with `Selection::duplicate()` and then modify it: ```python from krita import * doc = Krita.instance().activeDocument() activeSel = doc.selection() newSel = activeSel.duplicate() newSel.invert() doc.setSelection(newSel) ``` Please take it into account that the selection should be a **raster** selection for this code to work correctly. -- You are receiving this mail because: You are watching all bug changes.