diff options
author | wwylele <wwylele@gmail.com> | 2016-09-13 07:04:17 +0200 |
---|---|---|
committer | wwylele <wwylele@gmail.com> | 2016-09-13 10:15:42 +0200 |
commit | c0262001d81df07fd07a3fd89b8c6ccee74c5b92 (patch) | |
tree | 595302ae4e7e6d5cd952e665e8ce09422056a7c3 /src | |
parent | Merge pull request #2059 from MerryMage/tweak-audio-latency (diff) | |
download | yuzu-c0262001d81df07fd07a3fd89b8c6ccee74c5b92.tar yuzu-c0262001d81df07fd07a3fd89b8c6ccee74c5b92.tar.gz yuzu-c0262001d81df07fd07a3fd89b8c6ccee74c5b92.tar.bz2 yuzu-c0262001d81df07fd07a3fd89b8c6ccee74c5b92.tar.lz yuzu-c0262001d81df07fd07a3fd89b8c6ccee74c5b92.tar.xz yuzu-c0262001d81df07fd07a3fd89b8c6ccee74c5b92.tar.zst yuzu-c0262001d81df07fd07a3fd89b8c6ccee74c5b92.zip |
Diffstat (limited to 'src')
-rw-r--r-- | src/citra_qt/configure_system.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/citra_qt/configure_system.cpp b/src/citra_qt/configure_system.cpp index 55d964242..5c5d83ff3 100644 --- a/src/citra_qt/configure_system.cpp +++ b/src/citra_qt/configure_system.cpp @@ -18,9 +18,9 @@ ConfigureSystem::ConfigureSystem(QWidget *parent) : QWidget(parent), ui(new Ui::ConfigureSystem) { ui->setupUi(this); - this->setConfiguration(); - connect(ui->combo_birthmonth, SIGNAL(currentIndexChanged(int)), SLOT(updateBirthdayComboBox(int))); + + this->setConfiguration(); } ConfigureSystem::~ConfigureSystem() { @@ -60,6 +60,7 @@ void ConfigureSystem::ReadSystemSettings() { // set birthday std::tie(birthmonth, birthday) = Service::CFG::GetBirthday(); ui->combo_birthmonth->setCurrentIndex(birthmonth - 1); + updateBirthdayComboBox(birthmonth - 1); // explicitly update it because the signal from setCurrentIndex is not reliable ui->combo_birthday->setCurrentIndex(birthday - 1); // set system language |