Skip to content

Commit aa76c5d

Browse files
committed
window min size fix
1 parent c4c85b7 commit aa76c5d

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/qt/pivx/PIVXGUI.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -41,8 +41,8 @@ PIVXGUI::PIVXGUI(const NetworkStyle* networkStyle, QWidget* parent) :
4141

4242
/* Open CSS when configured */
4343
this->setStyleSheet(GUIUtil::loadStyleSheet());
44-
45-
GUIUtil::restoreWindowGeometry("nWindow", QSize(1200, 600), this);
44+
this->setMinimumSize(1200, 700);
45+
GUIUtil::restoreWindowGeometry("nWindow", QSize(1200, 700), this);
4646

4747
QString windowTitle = tr("PIVX Core") + " - ";
4848
#ifdef ENABLE_WALLET
@@ -76,7 +76,7 @@ PIVXGUI::PIVXGUI(const NetworkStyle* networkStyle, QWidget* parent) :
7676

7777
QFrame* centralWidget = new QFrame(this);
7878
this->setMinimumWidth(1200);
79-
this->setMinimumHeight(600);
79+
this->setMinimumHeight(700);
8080
QHBoxLayout* centralWidgetLayouot = new QHBoxLayout();
8181
centralWidget->setLayout(centralWidgetLayouot);
8282
centralWidgetLayouot->setContentsMargins(0,0,0,0);

0 commit comments

Comments
 (0)