mirror of https://github.com/stella-emu/stella.git
fixed Ctrl+A in EditableWidget
This commit is contained in:
parent
9a377a7849
commit
899584b455
|
@ -138,8 +138,8 @@ bool EditableWidget::handleControlKeys(StellaKey key, StellaMod mod)
|
|||
switch(key)
|
||||
{
|
||||
case KBDK_A:
|
||||
setCaretPos(0);
|
||||
_selectSize = -int(_editString.size());
|
||||
if(setCaretPos(int(_editString.size())))
|
||||
_selectSize = -int(_editString.size());
|
||||
break;
|
||||
|
||||
case KBDK_C:
|
||||
|
|
Loading…
Reference in New Issue