Skip to content

Commit

Permalink
Merge pull request #170 from Dayof/cricket-dev
Browse files Browse the repository at this point in the history
Content and retry status on the window interface
  • Loading branch information
freakboy3742 committed May 31, 2017
2 parents 8f80655 + 1611599 commit eb8d1ca
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/core/toga/interface/window.py
Expand Up @@ -217,8 +217,9 @@ def confirm_dialog(self, title, message):
def error_dialog(self, title, message):
return self._DIALOG_MODULE.error(self, title, message)

def stack_trace_dialog(self, title, message):
return self._DIALOG_MODULE.stack_trace(self, title, message)
def stack_trace_dialog(self, title, message, content, retry=False):
return self._DIALOG_MODULE.stack_trace(self, title, message,
content, retry)

def save_file_dialog(self, title, suggested_filename, file_types):
return self._DIALOG_MODULE.save_file(self, title, suggested_filename,
Expand Down

0 comments on commit eb8d1ca

Please sign in to comment.