Skip to content

Commit

Permalink
fix bug about finding next node by down key
Browse files Browse the repository at this point in the history
  • Loading branch information
1445643474 committed Oct 10, 2023
1 parent 60ab533 commit 4945ef6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ui/zenoedit/nodesys/zenonewmenu.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ bool ZenoNewnodeMenu::eventFilter(QObject* watched, QEvent* event)
if (m_preSearchMode)
{
m_searchView->setFocus();
m_searchView->setCurrentRow(0);
m_searchView->setCurrentRow(m_searchView->currentRow() + 1);
return true;
}
}
Expand Down

0 comments on commit 4945ef6

Please sign in to comment.