https://bugs.kde.org/show_bug.cgi?id=401656
Anna Medonosova <anna.medonos...@gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|REOPENED |CONFIRMED CC| |anna.medonos...@gmail.com --- Comment #4 from Anna Medonosova <anna.medonos...@gmail.com> --- I have reproduced the issue. Another way to reproduce is to: 1, create a file with a vector layer, two shapes 2, save and close the file 3, reopen the file 4, try to align the shapes 5, nothing happens. I'm attaching my testing file to this bug. The bug is not specific to the Arrange docker. The right-click context menu is also affected. I have run it in GDB, here is what I have seen: After selecting my two shapes in Krita, the following function (in DefaultTool.cpp:1573) is triggered: void DefaultTool::updateActions() { QList<KoShape*> editableShapes; if (koSelection()) { editableShapes = koSelection()->selectedEditableShapes(); } [ ... code that enables/disables arrange actions ... ] It runs two times. Usually the first time it calls DefaultTool::koSelection, which returns two entries for editableShapes and therefore the arrange actions are enabled. The second time, ToolReferenceImages::koSelection() is called instead, editableShapes are therefore empty and the arrange actions are disabled. -- You are receiving this mail because: You are watching all bug changes.