Skip to content

Commit

Permalink
If single file, skip MultiSelect in commit.
Browse files Browse the repository at this point in the history
  • Loading branch information
m-hall committed Mar 15, 2015
1 parent 203e534 commit 71656b0
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion svn_commands.py
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,10 @@ def run(self, paths=None, group=-1, index=-1):
if not util.use_native():
return
self.files = files
self.get_changes()
if self.is_file(files):
self.show_message_panel()
else:
self.get_changes()
def is_visible(self, paths=None, group=-1, index=-1):
"""Checks if the command should be visible"""
files = util.get_files(paths, group, index)
Expand Down

0 comments on commit 71656b0

Please sign in to comment.