Skip to content

Commit

Permalink
Improvement: use message_dislog for show the messages
Browse files Browse the repository at this point in the history
  • Loading branch information
randy3k committed May 2, 2017
1 parent 35dce1d commit 240cb6c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions core/interfaces/rebase.py
Original file line number Diff line number Diff line change
Expand Up @@ -675,7 +675,7 @@ def run_async(self):
return

if self.interface.entries[0].short_hash == short_hash:
sublime.status_message("Unable to move first commit up.")
sublime.message_dialog("Unable to move first commit up.")
return

move_idx, move_entry, _ = self.get_idx_entry_and_prev(short_hash)
Expand Down Expand Up @@ -721,7 +721,7 @@ def run_async(self):
return

if self.interface.entries[-1].short_hash == short_hash:
sublime.status_message("Unable to move last commit down.")
sublime.message_dialog("Unable to move last commit down.")
return

move_idx, move_entry, _ = self.get_idx_entry_and_prev(short_hash)
Expand Down

0 comments on commit 240cb6c

Please sign in to comment.