Skip to content

Commit

Permalink
1.005.37:
Browse files Browse the repository at this point in the history
Changed: Fixed by David #234
-Backspace at the beginning of a line was causing issues.
  • Loading branch information
maestrith committed May 21, 2021
1 parent 50fe950 commit 4513888
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions AHK-Studio.ahk
Original file line number Diff line number Diff line change
Expand Up @@ -418,9 +418,8 @@ AutoMenu(){
Backspace(sub:=1){
ControlGetFocus,Focus,A
Send:=sub?"Backspace":"Delete",sc:=CSC(),Start:=sc.2166(sc.2008),SetTimer("UpPos","-100")
if(sc.2128(Start)=sc.2008&&Start>0&&sc.2008=sc.2009&&Send="Backspace"){
if(sc.2128(Start)=sc.2008&&Start>0&&sc.2008=sc.2009&&Send="Backspace")
return sc.2645((SPos:=sc.2136(Start-1)),sc.2008-SPos)
}
if(!v.LineEdited[Start])
SetScan(Start)
if(!InStr(Focus,"Scintilla")){
Expand Down

0 comments on commit 4513888

Please sign in to comment.