Files
pythonocc-step-editor/step_editor/widgets.py
T

9 lines
176 B
Python
Raw Normal View History

from __future__ import annotations
from PySide6.QtWidgets import QComboBox
class NoWheelComboBox(QComboBox):
def wheelEvent(self, event) -> None:
event.accept()