Skip to content

Commit

Permalink
correct parent plumbing
Browse files Browse the repository at this point in the history
  • Loading branch information
alexhroom committed Aug 22, 2024
1 parent 6985d5b commit 79efcfb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rascal2/widgets/inputs.py
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ class AdaptiveDoubleSpinBox(QtWidgets.QDoubleSpinBox):
"""A double spinbox which adapts to given numbers of decimals."""

def __init__(self, parent=None):
super().__init__()
super().__init__(parent)
self.setStepType(self.StepType.AdaptiveDecimalStepType)
self.setKeyboardTracking(False)

Expand Down

0 comments on commit 79efcfb

Please sign in to comment.