diff --git a/syncplay/ui/gui.py b/syncplay/ui/gui.py index ad86dbf0..9121a047 100755 --- a/syncplay/ui/gui.py +++ b/syncplay/ui/gui.py @@ -456,6 +456,9 @@ def mouseMoveEvent(self, event): QtWidgets.QSplitterHandle.mouseMoveEvent(self, event) self.parent().parent().parent().updateListGeometry() + def paintEvent(self, event): + pass + def needsClient(f): # @NoSelf @wraps(f) def wrapper(self, *args, **kwds): @@ -1544,6 +1547,7 @@ def addTopLayout(self, window): window.topSplit.addWidget(window.outputFrame) window.topSplit.addWidget(window.listFrame) + window.topSplit.setHandleWidth(6) window.topSplit.setStretchFactor(0, 4) window.topSplit.setStretchFactor(1, 5) window.mainLayout.addWidget(window.topSplit)