diff options
author | Petr Mrázek <peterix@gmail.com> | 2019-08-02 23:52:19 +0200 |
---|---|---|
committer | Petr Mrázek <peterix@gmail.com> | 2019-08-02 23:52:19 +0200 |
commit | 7b00d47fe0be0e23d1267699a8491c1dc577f76d (patch) | |
tree | cc14a07062dba29475e5aa94dad654c673c0d7f6 /application/pages/global/CustomCommandsPage.cpp | |
parent | 930d39b5f2c28bbc5d7156e6e1e20e0fa8194900 (diff) | |
download | MultiMC-7b00d47fe0be0e23d1267699a8491c1dc577f76d.tar MultiMC-7b00d47fe0be0e23d1267699a8491c1dc577f76d.tar.gz MultiMC-7b00d47fe0be0e23d1267699a8491c1dc577f76d.tar.lz MultiMC-7b00d47fe0be0e23d1267699a8491c1dc577f76d.tar.xz MultiMC-7b00d47fe0be0e23d1267699a8491c1dc577f76d.zip |
NOISSUE tweak UI geometry and remove old language selection
Diffstat (limited to 'application/pages/global/CustomCommandsPage.cpp')
-rw-r--r-- | application/pages/global/CustomCommandsPage.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/application/pages/global/CustomCommandsPage.cpp b/application/pages/global/CustomCommandsPage.cpp index f2c3b185..3b182319 100644 --- a/application/pages/global/CustomCommandsPage.cpp +++ b/application/pages/global/CustomCommandsPage.cpp @@ -13,6 +13,7 @@ CustomCommandsPage::CustomCommandsPage(QWidget* parent): QWidget(parent) auto tabWidget = new QTabWidget(this); tabWidget->setObjectName(QStringLiteral("tabWidget")); commands = new CustomCommands(this); + commands->setContentsMargins(6, 6, 6, 6); tabWidget->addTab(commands, "Foo"); tabWidget->tabBar()->hide(); verticalLayout->addWidget(tabWidget); |