Skip to content

Commit

Permalink
Merge pull request #1457 from 1445643474/master
Browse files Browse the repository at this point in the history
fix bug about finding next node by down key
  • Loading branch information
zhouhang95 authored Oct 10, 2023
2 parents 5e3bb7e + 4945ef6 commit 3c27d3a
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 3c27d3a

Please sign in to comment.