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 {
160
160
selectionNudged = currentSelection.NudgeSelection (EditorSelection::NudgeDirection::NudgeUp, modShift);
161
161
} else if (m_KeyStates.at (KEY_DOWN) == pressed && m_PrevKeyStates.at (KEY_DOWN) != pressed) {
162
162
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) {
164
165
selectionNudged = currentSelection.NudgeSelection (EditorSelection::NudgeDirection::NudgeLeft, modShift);
165
166
} else if (m_KeyStates.at (KEY_RIGHT) == pressed && m_PrevKeyStates.at (KEY_RIGHT) != pressed) {
166
167
selectionNudged = currentSelection.NudgeSelection (EditorSelection::NudgeDirection::NudgeRight, modShift);
You can’t perform that action at this time.
0 commit comments