Skip to content

Commit

Permalink
Allows multiple characters in settings file
Browse files Browse the repository at this point in the history
  • Loading branch information
Alana Gilston committed Jan 2, 2016
1 parent bf5f150 commit e6c665a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion insert-to-column.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ def run(self, character_to_insert="", column_index=0):
self.character_to_insert = character_to_insert
self.column_index = column_index

if(len(character_to_insert) == 1):
if(len(character_to_insert) > 0):
self.on_character_to_insert(character_to_insert)
else:
self.window.show_input_panel(
Expand Down

0 comments on commit e6c665a

Please sign in to comment.