diff options
| author | bunnei <bunneidev@gmail.com> | 2021-01-13 10:44:21 -0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-01-13 10:44:21 -0800 |
| commit | 2c2ef9252fc14363a73e12c396a28c50a55c777e (patch) | |
| tree | cbed475384a104ecb7b38044b1c81b17077da712 /src/yuzu/bootmanager.cpp | |
| parent | baff865d7c9a1a165e2b4caacd3618966dc4fb03 (diff) | |
| parent | 0d7de7c2db27a3763ae3c2654928a3afc90e0b2b (diff) | |
Merge pull request #5342 from lioncash/qt6
yuzu: Migrate off of setMargin() to setContentsMargins()
Diffstat (limited to 'src/yuzu/bootmanager.cpp')
| -rw-r--r-- | src/yuzu/bootmanager.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/yuzu/bootmanager.cpp b/src/yuzu/bootmanager.cpp index 85ee2577d..e6c8f18af 100644 --- a/src/yuzu/bootmanager.cpp +++ b/src/yuzu/bootmanager.cpp @@ -290,8 +290,8 @@ GRenderWindow::GRenderWindow(GMainWindow* parent, EmuThread* emu_thread_, QString::fromUtf8(Common::g_scm_branch), QString::fromUtf8(Common::g_scm_desc))); setAttribute(Qt::WA_AcceptTouchEvents); - auto layout = new QHBoxLayout(this); - layout->setMargin(0); + auto* layout = new QHBoxLayout(this); + layout->setContentsMargins(0, 0, 0, 0); setLayout(layout); input_subsystem->Initialize(); |
