Fixes: One white pixel visible in full screen mode #210

This commit is contained in:
Olivier Keshavjee 2017-11-12 20:48:27 +01:00
parent 40b07938d0
commit 1aa6afc2bc

View file

@ -247,7 +247,8 @@ class fullScreenEditor(QWidget):
if hasattr(widget, "_autoHide") and not widget._autoHide:
return
widget.move(self.geometry().bottomRight())
# Hides wiget in the bottom right corner
widget.move(self.geometry().bottomRight() + QPoint(1, 1))
def showWidget(self, widget):
if widget in self._geometries: