File tree Expand file tree Collapse file tree 1 file changed +2
-1
lines changed
Expand file tree Collapse file tree 1 file changed +2
-1
lines changed Original file line number Diff line number Diff line change @@ -160,7 +160,8 @@ namespace RTEGUI {
160160 selectionNudged = currentSelection.NudgeSelection (EditorSelection::NudgeDirection::NudgeUp, modShift);
161161 } else if (m_KeyStates.at (KEY_DOWN) == pressed && m_PrevKeyStates.at (KEY_DOWN) != pressed) {
162162 selectionNudged = currentSelection.NudgeSelection (EditorSelection::NudgeDirection::NudgeDown, modShift);
163- } else if (m_KeyStates.at (KEY_LEFT) == pressed && m_PrevKeyStates.at (KEY_LEFT) != pressed) {
163+ }
164+ if (m_KeyStates.at (KEY_LEFT) == pressed && m_PrevKeyStates.at (KEY_LEFT) != pressed) {
164165 selectionNudged = currentSelection.NudgeSelection (EditorSelection::NudgeDirection::NudgeLeft, modShift);
165166 } else if (m_KeyStates.at (KEY_RIGHT) == pressed && m_PrevKeyStates.at (KEY_RIGHT) != pressed) {
166167 selectionNudged = currentSelection.NudgeSelection (EditorSelection::NudgeDirection::NudgeRight, modShift);
You can’t perform that action at this time.
0 commit comments