Skip to content

Commit

Permalink
feat: allow to maximize the batch download window (fix #3139)
Browse files Browse the repository at this point in the history
  • Loading branch information
Bionus committed May 5, 2024
1 parent 70073d6 commit 4f691c2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/gui/src/batch/batch-window.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ BatchWindow::BatchWindow(QSettings *settings, QWidget *parent)
#endif

// Allow dialog minimization
setWindowFlags(windowFlags() | Qt::WindowMinimizeButtonHint);
setWindowFlags(windowFlags() | Qt::WindowMinimizeButtonHint | Qt::WindowMaximizeButtonHint);
}

BatchWindow::~BatchWindow()
Expand Down

0 comments on commit 4f691c2

Please sign in to comment.