Account Settings: Expand selective sync on show #3585

This commit is contained in:
Markus Goetz 2015-10-15 17:27:38 +02:00
parent c3754e1fdd
commit 132b5f5130

View file

@ -606,6 +606,9 @@ bool AccountSettings::event(QEvent* e)
if (e->type() == QEvent::Hide || e->type() == QEvent::Show) {
_quotaInfo.setActive(isVisible());
}
if (e->type() == QEvent::Show) {
ui->_folderList->setExpanded(_model->index(0, 0), true);
}
return QWidget::event(e);
}