Merge pull request #6742 from stenzek/qt-borderless-fullscreen

Qt/AdvancedWidget: Fix borderless fullscreen option not showing
This commit is contained in:
JosJuice 2018-05-03 08:07:29 +02:00 committed by GitHub
commit 1a2b6e2645
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -94,7 +94,7 @@ void AdvancedWidget::CreateWidgets()
m_borderless_fullscreen =
new GraphicsBool(tr("Borderless Fullscreen"), Config::GFX_BORDERLESS_FULLSCREEN);
misc_layout->addWidget(m_borderless_fullscreen, 1, -1);
misc_layout->addWidget(m_borderless_fullscreen, 1, 0);
#endif
main_layout->addWidget(debugging_box);