From e1eca28cd349ea133b24c91cf6fe3d822a3c9ef8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jean-S=C3=A9bastien=20Gosselin?= Date: Sun, 19 Aug 2018 17:52:55 -0400 Subject: [PATCH] Add space around operator --- spyder/app/mainwindow.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spyder/app/mainwindow.py b/spyder/app/mainwindow.py index 18ae68af06a..fd732a3dd46 100644 --- a/spyder/app/mainwindow.py +++ b/spyder/app/mainwindow.py @@ -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()