Skip to content

Commit

Permalink
qt6: adjust margins of option dialog
Browse files Browse the repository at this point in the history
  • Loading branch information
Chilledheart committed Jun 11, 2024
1 parent 2946e84 commit 1262137
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/qt6/option_dialog.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ OptionDialog::OptionDialog(QWidget* parent) : QDialog(parent) {
setWindowFlags(windowFlags() & ~Qt::WindowContextHelpButtonHint);

QGridLayout* grid = new QGridLayout;
grid->setContentsMargins(10, 0, 20, 0);
grid->setContentsMargins(20, 15, 20, 15);

auto tcp_keep_alive_label = new QLabel(tr("TCP keep alive"));
auto tcp_keep_alive_cnt_label = new QLabel(tr("The number of TCP keep-alive probes"));
Expand Down

0 comments on commit 1262137

Please sign in to comment.