Skip to content

Commit

Permalink
💡
Browse files Browse the repository at this point in the history
@dnaspider
 v2.2.5.8
  • Loading branch information
dnaspider committed Dec 31, 2017
1 parent c62edff commit 7a940ea
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion dna.vb
Original file line number Diff line number Diff line change
Expand Up @@ -7967,8 +7967,13 @@ noformat:
If txtString.Text.Length = 3 Then
If GetAsyncKeyState(Keys.LControlKey) Or GetAsyncKeyState(Keys.RControlKey) Then txtString.AppendText(":")
Else
Select Case e.KeyValue
Case 17
My.Settings.SettingSpecialKey = Keys.RControlKey
Case Else
If IsNumeric(e.KeyValue) Then My.Settings.SettingSpecialKey = e.KeyValue
End Select
clearTxtString()
If IsNumeric(e.KeyValue) Then My.Settings.SettingSpecialKey = e.KeyValue
End If
Exit Sub
End If
Expand Down

0 comments on commit 7a940ea

Please sign in to comment.