2
0
mirror of https://github.com/kotatogram/kotatogram-desktop synced 2025-08-31 22:55:11 +00:00

Preserve panels state through visibility toggles.

Emoji/Stickers/GIFs panel saves all the state between activations.
This commit is contained in:
John Preston
2017-05-17 23:59:43 +03:00
parent 132d884600
commit bf0f956325
4 changed files with 12 additions and 10 deletions

View File

@@ -116,7 +116,8 @@ void GifsListWidget::Footer::paintEvent(QPaintEvent *e) {
}
void GifsListWidget::Footer::processPanelHideFinished() {
_field->setText(QString());
// Preserve panel state through visibility toggles.
//_field->setText(QString());
}
GifsListWidget::GifsListWidget(QWidget *parent, gsl::not_null<Window::Controller*> controller) : Inner(parent, controller)
@@ -407,7 +408,8 @@ void GifsListWidget::processPanelHideFinished() {
result->forget();
}
};
clearInlineRows(false);
// Preserve panel state through visibility toggles.
//clearInlineRows(false);
for_const (auto &item, _gifLayouts) {
itemForget(item.second);
}