diff --git a/Sqliteman/sqliteman/dataviewer.cpp b/Sqliteman/sqliteman/dataviewer.cpp
index 093498b..c5093e7 100644
--- a/Sqliteman/sqliteman/dataviewer.cpp
+++ b/Sqliteman/sqliteman/dataviewer.cpp
@@ -190,6 +190,7 @@ void DataViewer::findNext(int row)
ui.itemView->setCurrentIndex(row, column);
}
updateButtons();
+ ui.statusText->hide();
QApplication::restoreOverrideCursor();
return;
}
@@ -197,6 +198,7 @@ void DataViewer::findNext(int row)
QApplication::restoreOverrideCursor();
}
ui.statusText->setPlainText("Not found");
+ ui.statusText->show();
}
void DataViewer::removeFinder()
@@ -267,6 +269,7 @@ void DataViewer::findAll()
if (!anyFound)
{
ui.statusText->setPlainText("No match found");
+ ui.statusText->show();
unFindAll();
}
else
diff --git a/Sqliteman/sqliteman/doc/doc.qrc b/Sqliteman/sqliteman/doc/doc.qrc
index e11f747..842b856 100644
--- a/Sqliteman/sqliteman/doc/doc.qrc
+++ b/Sqliteman/sqliteman/doc/doc.qrc
@@ -56,9 +56,12 @@
All interface elements contains so called "tool tips" – quick notes which are available when you stay with a mouse cursor in the element -are for a while.