Skip to content

Commit cbbc258

Browse files
committed
OWWidget: Turn autoRepeat for the hide/show control area shortcut
On Gnome, KDE, ... fast repeat causes the widget to 'travel' to the right.
1 parent 8606eea commit cbbc258

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Orange/widgets/widget.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -241,7 +241,7 @@ def __new__(cls, *args, captionTitle=None, **kwargs):
241241
)
242242
sc = QShortcut(
243243
QKeySequence(Qt.ControlModifier | Qt.ShiftModifier | Qt.Key_D),
244-
self)
244+
self, autoRepeat=False)
245245
sc.activated.connect(self.__toggleControlArea)
246246
return self
247247

0 commit comments

Comments
 (0)