MCPcopy Create free account
hub / github.com/LUX-Core/lux / setMinimumSize

Method setMinimumSize

src/qt/qcustomplot.cpp:3281–3289  ·  view source on GitHub ↗

! Sets the minimum size of this layout element. A parent layout tries to respect the \a size here by changing row/column sizes in the layout accordingly. If the parent layout size is not sufficient to satisfy all minimum size constraints of its child layout elements, the layout may set a size that is actually smaller than \a size. QCustomPlot propagates the layout's size constraints t

Source from the content-addressed store, hash-verified

3279 setSizeConstraintRect (see \ref rect and \ref outerRect).
3280*/
3281void QCPLayoutElement::setMinimumSize(const QSize &size)
3282{
3283 if (mMinimumSize != size)
3284 {
3285 mMinimumSize = size;
3286 if (mParentLayout)
3287 mParentLayout->sizeConstraintsChanged();
3288 }
3289}
3290
3291/*! \overload
3292

Callers 4

WalletViewMethod · 0.80
BitcoinGUIMethod · 0.80
foreachFunction · 0.80
AskPassphraseDialogMethod · 0.80

Calls 1

Tested by

no test coverage detected