Skip to content

Commit

Permalink
Merge pull request #1481 from beeware/cocoa-stacktrace-dialog-fix
Browse files Browse the repository at this point in the history
Fix typo in the cocoa stack trace dialog
  • Loading branch information
freakboy3742 authored May 10, 2022
2 parents 6c26a14 + 55cfc75 commit 938e5c1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/cocoa/toga_cocoa/dialogs.py
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ def build_dialog(self, alert, content, retry):
trace = NSTextView.alloc().init()
trace.insertText(content)
trace.editable = False
trace.werticallyResizable = True
trace.verticallyResizable = True
trace.horizontallyResizable = True
trace.font = NSFont.fontWithName("Menlo", size=12)

Expand Down

0 comments on commit 938e5c1

Please sign in to comment.