different scale of Designer and App - how to fix it?
Unsolved
General and Desktop
-
Hello!
Want to run a downloaded Qt-project on Windows 10.
I'm able to modify the UI, but if I start the app
all widgest are too small and narrowly,
only the text-fonts are as defined in designer.Have you a fast advice for newbie**?**
Thank you
Erhyhere the comparison:
-
Thank you for your fast answer
I could do as you suggested.
Now there is a other quirk;
a QToolBox with 4 QWidget's vertical aligned.
In started up only the half is visible, movable with sliders.
If I enlarge the toolbox all is enlarged.
Where to do enlarge, that all is visible without sliders?
Thank you
Erhy -
- QBoxLayout::setStretch(int index, int stretch) and use i.e. vertical layout. In this case it should be (most probably) QBoxLayout::setStretch( 0, 0) this will expand first widget based on it's content layouts setup.
- set fixed size for QToolBox
- use Splitters with will allow to manually resize areas. I think this is most appropriate solution for this case.