How to resize QDoubleSpinBox?

Nothing I tried seems to work. setMinimumSize does exactly what I want if I switch from QDoubleSpinBox to QSpinBox, which makes me think that this might be a bug in Qt 5.1.

+4
source share
1 answer

my Qt5.1 looks great when resizing the player. in the layout? you set the layout settings:

setSizePolicy(QSizePolicy::Ignored,QSizePolicy::Ignored); ?
+2
source

Source: https://habr.com/ru/post/1535823/


All Articles