Skip to content

Commit

Permalink
fix: remove minimum size restriction of main window
Browse files Browse the repository at this point in the history
  • Loading branch information
saturneric committed Oct 3, 2024
1 parent 6f5ee58 commit d82bbd6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/ui/main_window/MainWindow.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
namespace GpgFrontend::UI {

MainWindow::MainWindow() : GeneralMainWindow("main_window") {
this->setMinimumSize(1200, 870);
// this->setMinimumSize(1200, 870);
this->setWindowTitle(qApp->applicationName());
}

Expand Down
2 changes: 1 addition & 1 deletion src/ui/main_window/MainWindowUI.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -706,7 +706,7 @@ void MainWindow::create_dock_windows() {
key_list_dock_->setObjectName("EncryptDock");
key_list_dock_->setAllowedAreas(Qt::LeftDockWidgetArea |
Qt::RightDockWidgetArea);
key_list_dock_->setMinimumWidth(460);
// key_list_dock_->setMinimumWidth(460);
addDockWidget(Qt::RightDockWidgetArea, key_list_dock_);

m_key_list_->AddListGroupTab(
Expand Down

0 comments on commit d82bbd6

Please sign in to comment.