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

12 lines
269 B
Python
Raw Normal View History

from __future__ import annotations
from PySide6.QtWidgets import QComboBox
class NoWheelComboBox(QComboBox):
def wheelEvent(self, event) -> None:
if self.view().isVisible():
super().wheelEvent(event)
return
event.ignore()