flameshot
flameshot copied to clipboard
fix for QRect keep width and height
setTopLeft() call here will make QRect width and height changed, should use moveTo(). eg. when widgetOffset(-100, -100), geometry(x:0,y:0,w:100, h:100). after setTopLeft(), geometry(x:-100,y:-100,w:200,h:200) use moveTo, geometry(x:-100,y:-100,w:100,h:100) fix issue#3022
Thank you! Can you rebase this on master to kick off the now fixed CI?
I meant to post my comment here not the issue: https://github.com/flameshot-org/flameshot/issues/3022#issuecomment-2917864530
But this PR does not resolve the issue when I test it.