filter: on show focus on fulltext-field

After pressing CTRL-F let the user immediately enter a search
string.

Signed-off-by: Berthold Stoeger <bstoeger@mail.tuwien.ac.at>
This commit is contained in:
Berthold Stoeger 2020-02-18 11:54:57 +01:00 committed by Dirk Hohndel
parent 2bd4c6f6ec
commit 3103ca89d9

View file

@ -264,6 +264,7 @@ void FilterWidget2::updatePlanned(int value)
void FilterWidget2::showEvent(QShowEvent *event)
{
QWidget::showEvent(event);
ui.fullText->setFocus();
filterDataChanged(filterData);
}