Skip to content

Commit

Permalink
fix build errors
Browse files Browse the repository at this point in the history
  • Loading branch information
scheffle committed Dec 28, 2023
1 parent e17bd29 commit 04a4bc6
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions vstgui/lib/ctexteditor.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -415,9 +415,9 @@ TextEditorView::TextEditorView (ITextEditorController* controller) : CView ({0,
md.commandKeys[Index (Command::UseSelectionForFind)] = {
u'e', VirtualKey::None, {ModifierKey::Control}};
#else
data.commandKeys[Index (Command::FindNext)] = {0, VirtualKey::F3, {}};
data.commandKeys[Index (Command::FindPrevious)] = {0, VirtualKey::F3, {ModifierKey::Shift}};
data.commandKeys[Index (Command::UseSelectionForFind)] = {
md.commandKeys[Index (Command::FindNext)] = {0, VirtualKey::F3, {}};
md.commandKeys[Index (Command::FindPrevious)] = {0, VirtualKey::F3, {ModifierKey::Shift}};
md.commandKeys[Index (Command::UseSelectionForFind)] = {
0, VirtualKey::F3, {ModifierKey::Control}};
#endif
md.controller->onTextEditorCreated (*this);
Expand Down

0 comments on commit 04a4bc6

Please sign in to comment.