From ca46d2d6d8c79734a4b75f0dd1487405d8eab93a Mon Sep 17 00:00:00 2001 From: Simon Renblad Date: Wed, 17 Jan 2024 16:57:54 +0800 Subject: [PATCH] dndwidgets: add V --- artiq/gui/dndwidgets.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/artiq/gui/dndwidgets.py b/artiq/gui/dndwidgets.py index 46572e57c..372a6b595 100644 --- a/artiq/gui/dndwidgets.py +++ b/artiq/gui/dndwidgets.py @@ -1,7 +1,7 @@ from PyQt5 import QtCore, QtWidgets -class DragDropSplitter(QtWidgets.QSplitter): +class VDragDropSplitter(QtWidgets.QSplitter): def __init__(self, parent): QtWidgets.QSplitter.__init__(self, parent=parent) self.setAcceptDrops(True)