[libcalamaresui] Also modern-style initialize center and disable flags

- All constructors explicitly initialize these, so there's no
  real change here.
This commit is contained in:
Adriaan de Groot 2022-04-16 12:20:02 +02:00
parent 497422e72c
commit 18f8633dd9

View File

@ -150,8 +150,8 @@ private:
QColor _textColor = Qt::black;
// Environment settings
bool _centerOnParent;
bool _disableParentWhenSpinning;
bool _centerOnParent = true;
bool _disableParentWhenSpinning = true;
// Internal bits
QTimer *_timer = nullptr;