widget size and position issues when on windows 11
-
I made an application in windows 10 and ran it on another laptop based on windows 10 it worked right the size or position of the widget did not change but when I installed it in windows 11 the size and position of the widget became chaotic, how to solve this? I use the MinGw64 compiler.
the way I deploy I take the application in the debug folder in the project then deploy it with windeployqt.exe in cmd -
Do you use layouts to position widgets?
-
-
@Blackzero said in widget size and position issues when on windows 11:
should I use that?
Yes, unless you have good reasons not to use layouts.
I mean, why make your life harder doing all this positioning and sizing manually if you can simply use layouts? -
@jsulm said in widget size and position issues when on windows 11:
Yes, unless you have good reasons not to use layouts.
but I specify the maximum size and minimum size, I mean whether the layout will work to adjust the screen for the window that has been set the maximum and minimum size.
-
@Blackzero said in widget size and position issues when on windows 11:
but I specify the maximum size and minimum size
To all widgets?
If so, then what's the point to resize the window?
Or do you set max/min sizes when window if resized?
If so - why? Why not simply use layouts?