fix: add placeholder to search bar

Signed-off-by: Sefa Eyeoglu <contact@scrumplex.net>
This commit is contained in:
Sefa Eyeoglu 2022-10-06 15:07:53 +02:00
parent 1965e7ca87
commit cf3ccf376b
No known key found for this signature in database
GPG Key ID: C10411294912A422

View File

@ -874,6 +874,7 @@ MainWindow::MainWindow(QWidget *parent) : QMainWindow(parent), ui(new MainWindow
// Create instance list filter box
{
filterView = new QLineEdit(ui->centralWidget);
filterView->setPlaceholderText(tr("Search and filter..."));
ui->verticalLayout->addWidget(filterView);
}