Skip to content

Commit

Permalink
[MLV] Fix search start
Browse files Browse the repository at this point in the history
  • Loading branch information
Sobottasgithub committed Mar 7, 2024
1 parent 9deabc4 commit ec15213
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/LogViewer/ui/main_window.py
Original file line number Diff line number Diff line change
Expand Up @@ -440,7 +440,7 @@ def _prepareSearch(self):
self.uiCombobox_searchInput.setStyleSheet("")
return
if self.search != None:
if self.search.getQuery() == query:
if self.search.getQuery() == query and self.uiWidget_listView.selectedIndexes()[0].row() == self.search.getPosition:
return
progressbar, update_progressbar = self.progressDialog("Searching...", query, True)
try:
Expand Down

0 comments on commit ec15213

Please sign in to comment.