From 3b77094bb458a57862b7dba40bd65ed88732ae9a Mon Sep 17 00:00:00 2001 From: Thomas McGrew Date: Sat, 27 Jul 2019 02:16:28 -0400 Subject: [PATCH] Set a minimum with for the window This should ensure that the seed number is fully displayed --- common/build.h | 2 +- ui/main-window.cpp | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/common/build.h b/common/build.h index 72a01ff..fbf73fe 100644 --- a/common/build.h +++ b/common/build.h @@ -1,2 +1,2 @@ /* This file is generated by git */ -#define BUILD "413" +#define BUILD "414" diff --git a/ui/main-window.cpp b/ui/main-window.cpp index e781bcb..43d9f60 100644 --- a/ui/main-window.cpp +++ b/ui/main-window.cpp @@ -44,6 +44,7 @@ enum tabs { MainWindow::MainWindow(QWidget *parent) : QMainWindow(parent) { + this->setMinimumWidth(600); this->mainWidget = new QWidget(); this->gameplayWidget = new QWidget(); this->funWidget = new QWidget();