GuiCitation: don't reset filter on show

Addresses #11291
This commit is contained in:
Juergen Spitzmueller 2018-09-22 10:37:22 +02:00
parent 9bbd21cf1f
commit 33d6499bbc

View File

@ -202,7 +202,8 @@ void GuiCitation::applyView()
void GuiCitation::showEvent(QShowEvent * e)
{
filter_->clear();
if (!filter_->text().isEmpty())
filterPressed();
availableLV->setFocus();
DialogView::showEvent(e);
}