Sdk/TextAreaWidget: Fix detail about cursor

When moving cursor to the left when already at the beginning of a line, make it move to the upper line
This commit is contained in:
Lynix 2017-11-11 18:19:44 +01:00
parent 2b88d81294
commit f5b639ec0f
1 changed files with 2 additions and 2 deletions

View File

@ -177,7 +177,7 @@ namespace Ndk
if (ignoreDefaultAction)
break;
MoveCursor({-1, 0});
MoveCursor(-1);
break;
}
@ -189,7 +189,7 @@ namespace Ndk
if (ignoreDefaultAction)
break;
MoveCursor({1, 0});
MoveCursor(1);
break;
}