Skip to content

Commit

Permalink
updated for merge conflict with PR to aisingapore#370
Browse files Browse the repository at this point in the history
  • Loading branch information
kensoh authored Mar 29, 2019
1 parent c891406 commit 94be454
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions src/tagui.sikuli/tagui.py
Original file line number Diff line number Diff line change
Expand Up @@ -167,9 +167,6 @@ def type_intent ( raw_intent ):
return type(Location(x_coordinate(param1),y_coordinate(param1)),param2)
else:
return type(Location(x_coordinate(param1),y_coordinate(param1)),param2,modifier_keys)
return type(param2)
elif is_coordinates(param1):
return type(Location(x_coordinate(param1),y_coordinate(param1)),param2)
elif exists(param1):
if modifier_keys == 0:
return type(param1,param2)
Expand Down Expand Up @@ -274,7 +271,7 @@ def keyboard_intent ( raw_intent ):
else:
return type(params,modifier_keys)

# function for low-level mouse control
# function for low-level mouse control
def mouse_intent ( raw_intent ):
params = (raw_intent + ' ')[1+(raw_intent + ' ').find(' '):].strip()
print '[tagui] ACTION - mouse ' + params
Expand Down

0 comments on commit 94be454

Please sign in to comment.