Skip to content

Commit

Permalink
fix: threshold value
Browse files Browse the repository at this point in the history
  • Loading branch information
yasutakatou authored Jun 27, 2020
1 parent ca5ae34 commit e764dff
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion do.go
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ func main() {
_exportFile := flag.String("export", "output.tsv", "[-export=export file name]")
_importFile := flag.String("import", "input.tsv", "[-import=import file name]")
_DEBUG := flag.Bool("debug", false, "[-debug=debug mode (true is enable)]")
_threshold := flag.Float64("threshold", 0.5, "[-threshold=same window threshold]")
_threshold := flag.Float64("threshold", 0.1, "[-threshold=same window threshold]")
_move := flag.Float64("move", 50, "[-move=mouse move record threshold]")
_try := flag.Int("try", 10, "[-try=error and try counter]")
_wait := flag.Int("wait", 250, "[-wait=loop wait Millisecond]")
Expand Down

0 comments on commit e764dff

Please sign in to comment.