Summary: | Move tool's Position x/y spinboxes does not move the highlighted object | ||
---|---|---|---|
Product: | [Applications] krita | Reporter: | Tyson Tan <tysontanx> |
Component: | Tools/Move | Assignee: | Krita Bugs <krita-bugs-null> |
Status: | RESOLVED FIXED | ||
Severity: | normal | CC: | griffinvalley, halla |
Priority: | NOR | ||
Version: | 4.2.9 | ||
Target Milestone: | --- | ||
Platform: | Other | ||
OS: | Linux | ||
Latest Commit: | https://invent.kde.org/graphics/krita/commit/12b3293d4987291e044bd4e52070a7e54f7e73dc | Version Fixed In: | |
Sentry Crash Report: |
Description
Tyson Tan
2020-04-20 09:11:00 UTC
yeah, noticed this yesterday as well... I must be misunderstanding something? I opened an image with a layer, and changed the values of the x,y spinboxes, and the layer certainly moved for me. I cleared kritadisplayrc kritarc kritashortcutsrc and now it worked as intended. It's not the first time something like this happened though. Another Kubuntu user reported this 3 days before I confirmed it today. I used Appimages of 4.2.9, 4.3.0 5.0.0 on my installation, but only integrate one at a time. I also installed 4.2.9 from Manjaro's repository once but uninstalled it later. I wonder if this has something to do with it? I've noticed that Krita from Manjaro's official repo has wonky pop-up palette triggering. Move tool's modifier keys were also completely broken which I didn't have time to report, but now I'm glad I didn't because they were fixed after deleting the settings as well. Meanwhile please close this bug if needed. If I find more information I will put them here later. Thank you for your time! The wonkiness in the manjaro build of Krita is probably because they haven't patched Qt. If you're using 5.0 appimages, please be aware that it's really unstable. It might make sense to use different XDG environment variables for 4.x and 5.x, to keep the resource folder and configs separate: export XDG_DATA_HOME=$dev/.share export XDG_CONFIG_HOME=$dev/.config export XDG_CACHE_HOME=$dev/.cache Git commit efe9ed8c0e5c5211a66919290dcff7e907e48840 by Dmitry Kazakov, on behalf of Mathias Wein. Committed on 29/10/2020 at 12:20. Pushed by dkazakov into branch 'krita/4.3'. Fix malfunction of x/y position spin boxes in move tool's options The signal connections had to be moved from the constructor to activate(), since they get disconnected on every deactivate(). Also, manipulating the x or y position without clicking on the canvas first doubled the initial value, because a new stroke gets created, which in turn resets the handle rect. Reading the value before starting the stroke and making sure it's not currently unavailable until recalculated should prevent it. Related: bug 423452 M +23 -10 plugins/tools/basictools/kis_tool_move.cc https://invent.kde.org/graphics/krita/commit/efe9ed8c0e5c5211a66919290dcff7e907e48840 Git commit 12b3293d4987291e044bd4e52070a7e54f7e73dc by Dmitry Kazakov, on behalf of Mathias Wein. Committed on 29/10/2020 at 11:37. Pushed by dkazakov into branch 'master'. Fix malfunction of x/y position spin boxes in move tool's options The signal connections had to be moved from the constructor to activate(), since they get disconnected on every deactivate(). Also, manipulating the x or y position without clicking on the canvas first doubled the initial value, because a new stroke gets created, which in turn resets the handle rect. Reading the value before starting the stroke and making sure it's not currently unavailable until recalculated should prevent it. Related: bug 423452 M +23 -10 plugins/tools/basictools/kis_tool_move.cc https://invent.kde.org/graphics/krita/commit/12b3293d4987291e044bd4e52070a7e54f7e73dc Thank you, Dmitry! :D |