When 2 documents are opened at the same time, "Set horizontal Mirror Mode" and "Set vertical Mirror Mode" always initiates their axises at the center of the 2nd document, even when we are using them on the 1st canvas. This bug is worse when the dimensions of the 2nd document is more than 2X larger than the 1st document -- the axises are initiated outside the canvas and thus cannot be seen or dragged. Causing great confusion. (at some point I thought the customizable axis feature was canceled because of this bug) Reproducible: Always Steps to Reproduce: 1. Create 1st document, size: 256x256 2. Create 2nd document size: 512x512 3. Switch to 1st document 4. Press "Set horizontal Mirror Mode" and "Set vertical Mirror Mode". Actual Results: Axises are initiated on the edge of 1st document. Expected Results: Axises should always be initiated at the center of a document. Each opened document should have their own separated parameter on Mirror Mode axises. Can also be triggered using another way: 1. Create 1st document, size: 256x256 2. Press "Set horizontal Mirror Mode" and "Set vertical Mirror Mode". 3. Create 2nd document size: 512x512 4. Switch to 1st document The result: the axises of the 1st document automatically pushed to the edge match the situation of the 2nd document on pixel level.
Created attachment 99487 [details] Krita use fixed axises position across all document tabs.
I can confirm this behavior on arch linux too
Just for an update : This bug is still present in current build from git master.
The problem is that currently the mirror axes are a part of the global canvas, not of the document, therefore the are shared :(
Git commit 6fbe5c3fcedadb8e99d24ac87ae7d051de4851be by Dmitry Kazakov. Committed on 02/11/2016 at 17:24. Pushed by dkazakov into branch 'rempt/impex-refactoring'. Make Mirror Mode have different axes centers for each opened image Fixes T4226 M +22 -0 libs/image/kis_algebra_2d.h M +13 -0 libs/image/kis_image.cc M +13 -0 libs/image/kis_image.h M +3 -8 libs/ui/canvas/kis_mirror_axis.cpp M +0 -2 libs/ui/kis_canvas_resource_provider.h M +6 -4 libs/ui/tool/kis_resources_snapshot.cpp M +0 -3 sdk/tests/stroke_testing_utils.cpp http://commits.kde.org/krita/6fbe5c3fcedadb8e99d24ac87ae7d051de4851be
Git commit 50b64e7e2f656e55cbe5be0a7c885acce9ac9846 by Dmitry Kazakov. Committed on 02/11/2016 at 17:56. Pushed by dkazakov into branch 'krita/3.1'. Make Mirror Mode have different axes centers for each opened image Fixes T4226 # Conflicts: # libs/image/kis_image.cc M +22 -0 libs/image/kis_algebra_2d.h M +13 -0 libs/image/kis_image.cc M +13 -0 libs/image/kis_image.h M +3 -8 libs/ui/canvas/kis_mirror_axis.cpp M +0 -2 libs/ui/kis_canvas_resource_provider.h M +6 -4 libs/ui/tool/kis_resources_snapshot.cpp M +0 -3 sdk/tests/stroke_testing_utils.cpp http://commits.kde.org/krita/50b64e7e2f656e55cbe5be0a7c885acce9ac9846
Thank you Dmitry! :D