Skip to content

Commit

Permalink
Merge pull request #355 from go-vgo/bitmap-pr
Browse files Browse the repository at this point in the history
Fixed Linux TypeStr() function input double quote
  • Loading branch information
vcaesar authored Aug 21, 2021
2 parents 5f77def + 422f8fd commit 0e61a63
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 0e61a63

Please sign in to comment.