GUI: more usability improvements
- move cursor to end of clipboard when pasting - better effect input
This commit is contained in:
parent
d112cd0c68
commit
90bbc42290
4 changed files with 35 additions and 1 deletions
|
|
@ -976,7 +976,18 @@ void FurnaceGUI::valueInput(int num, bool direct, int target) {
|
|||
curNibble=false;
|
||||
} else {
|
||||
curNibble=!curNibble;
|
||||
if (!curNibble) editAdvance();
|
||||
if (!curNibble) {
|
||||
if (!settings.effectCursorDir) {
|
||||
editAdvance();
|
||||
} else {
|
||||
if (cursor.xFine&1) {
|
||||
cursor.xFine++;
|
||||
} else {
|
||||
editAdvance();
|
||||
cursor.xFine--;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue