Skip to content

Commit

Permalink
Fixed Linux TypeStr() function double quote
Browse files Browse the repository at this point in the history
  • Loading branch information
vcaesar committed Aug 21, 2021
1 parent 5f77def commit 422f8fd
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions robotgo.go
Original file line number Diff line number Diff line change
Expand Up @@ -742,6 +742,9 @@ func ToUC(text string) []string {
if st == "\\\\" {
st = "\\"
}
if st == `\"` {
st = `"`
}
uc = append(uc, st)
}

Expand Down

0 comments on commit 422f8fd

Please sign in to comment.