1
0
mirror of https://github.com/qTox/qTox.git synced 2024-03-22 14:00:36 +08:00

Fixed #2294 - Remember proxy type after retranslation

This commit is contained in:
Impyy 2015-10-07 18:32:57 +02:00
parent 3e75fd4dbc
commit fbd95b0781

View File

@ -479,5 +479,7 @@ bool GeneralForm::eventFilter(QObject *o, QEvent *e)
void GeneralForm::retranslateUi()
{
int proxyType = bodyUI->proxyType->currentIndex();
bodyUI->retranslateUi(this);
bodyUI->proxyType->setCurrentIndex(proxyType);
}