Merge pull request #328 from pikers/windows_tiling_fix

fix windows snap problem by removing maximum window size
flexxin
Guillermo Rodriguez 2022-06-04 20:58:37 -03:00 committed by GitHub
commit 4ddf04f68b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 0 additions and 1 deletions

View File

@ -287,7 +287,6 @@ class MainWindow(QtGui.QMainWindow):
app = QtGui.QApplication.instance()
geo = self.current_screen().geometry()
h, w = geo.height(), geo.width()
self.setMaximumSize(w, h)
# use approx 1/3 of the area of the screen by default
self._size = round(w * .666), round(h * .666)