Merge pull request #6979 from spycrab/qt_fix_sgp

Qt/SettingsWindow: Fix SelectGeneralPane opening the Audio pane
This commit is contained in:
spycrab 2018-05-27 03:45:12 +02:00 committed by GitHub
commit e9ae6e2727
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -67,5 +67,5 @@ void SettingsWindow::SelectAudioPane()
void SettingsWindow::SelectGeneralPane()
{
m_tab_widget->setCurrentIndex(static_cast<int>(TabIndex::Audio));
m_tab_widget->setCurrentIndex(static_cast<int>(TabIndex::General));
}