Skip to content

Commit

Permalink
default window size
Browse files Browse the repository at this point in the history
  • Loading branch information
mjoppich committed Jan 8, 2019
1 parent 567807e commit 4d4b2dc
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/app/QDownloadTemplatesWindow.h
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ class QDownloadTemplatesWindow : public QWidget {

m_sTargetDirectory = sTemplateDir;

//this->setMinimumSize(200,200);
this->setMinimumSize(900,600);

QLayout* pLayout = new QVBoxLayout();

Expand Down
3 changes: 2 additions & 1 deletion src/bioGUIapp.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -208,7 +208,8 @@ bioGUIapp::bioGUIapp(int& argc, char** argv)
m_pMainMainWindow = new QMainWindow();
m_pMainMainWindow->setCentralWidget(pSplitter);
m_pMainMainWindow->show();
m_pMainMainWindow->setMinimumSize(700, 500);
m_pMainMainWindow->setMinimumSize(1024,900);


QList<int> sizeList;
sizeList << 250 << m_pMainMainWindow->width()-250;
Expand Down

0 comments on commit 4d4b2dc

Please sign in to comment.