Skip to content

Commit

Permalink
fix(gui): make 900x500 the preferred resolution rather than the minimum
Browse files Browse the repository at this point in the history
  • Loading branch information
craftablescience committed Aug 3, 2024
1 parent 06d3c08 commit 1b37ef3
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 1 deletion.
1 change: 1 addition & 0 deletions src/gui/Main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@ int main(int argc, char** argv) {

auto* window = new Window();
if (!Options::get<bool>(OPT_START_MAXIMIZED)) {
window->resize(900, 500);
window->show();
} else {
window->showMaximized();
Expand Down
1 change: 0 additions & 1 deletion src/gui/Window.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,6 @@ Window::Window(QWidget* parent)
, dropEnabled(true) {
this->setWindowTitle(PROJECT_TITLE.data());
this->setWindowIcon(QIcon(":/logo.png"));
this->setMinimumSize(900, 500);

const auto showRestartWarning = [this] {
static bool shownRestartMessage = false;
Expand Down

0 comments on commit 1b37ef3

Please sign in to comment.