Skip to content

Commit

Permalink
Add space around operator
Browse files Browse the repository at this point in the history
  • Loading branch information
jnsebgosselin committed Aug 20, 2018
1 parent d2f2a1e commit e1eca28
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion spyder/app/mainwindow.py
Original file line number Diff line number Diff line change
Expand Up @@ -2338,7 +2338,7 @@ def toggle_fullscreen(self):
| Qt.WindowStaysOnTopHint)
r = QApplication.desktop().screenGeometry()
self.setGeometry(
r.left()-1, r.top()-1, r.width()+2, r.height()+2)
r.left() - 1, r.top() - 1, r.width() + 2, r.height() + 2)
self.showNormal()
else:
self.showFullScreen()
Expand Down

0 comments on commit e1eca28

Please sign in to comment.