Skip to content

Commit 0f4ab87

Browse files
committed
Also increase default sizes of labels and location dialogs
1 parent a9a084f commit 0f4ab87

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

src/ui/screens/mainwindow/editlabelsdialog.cpp

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,5 +52,7 @@ namespace tremotesf {
5252
QObject::connect(dialogButtonBox, &QDialogButtonBox::rejected, this, &QDialog::reject);
5353

5454
editLabelsWidget->setFocusOnComboBox();
55+
56+
resize(sizeHint().expandedTo(QSize(512, 0)));
5557
}
5658
}

src/ui/screens/mainwindow/mainwindow.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@ namespace tremotesf {
132132
}
133133
});
134134

135-
resize(sizeHint().expandedTo(QSize(320, 0)));
135+
resize(sizeHint().expandedTo(QSize(720, 0)));
136136
}
137137

138138
[[nodiscard]] QString downloadDirectory() const { return mDirectoryWidget->path(); }

0 commit comments

Comments
 (0)