Skip to content

Commit

Permalink
Fix the warning about a window title without a placeholder
Browse files Browse the repository at this point in the history
  • Loading branch information
thocevar committed Jan 28, 2019
1 parent 89d3cc9 commit adb23a7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Orange/canvas/application/canvasmain.py
Original file line number Diff line number Diff line change
Expand Up @@ -230,7 +230,7 @@ def setup_ui(self):
frame.setWidget(self.scheme_widget)

# Window 'title'
self.setWindowFilePath(self.scheme_widget.path())
self.setWindowFilePath(self.scheme_widget.path() or " ")
self.scheme_widget.pathChanged.connect(self.setWindowFilePath)
self.scheme_widget.modificationChanged.connect(self.setWindowModified)

Expand Down

0 comments on commit adb23a7

Please sign in to comment.