I have GUI that interfaces with a piece of hardware. I'm using QDials to send commands to the hardware. The problem is that the hardware can't react fast enough to the constant valueChanged signals being sent from the dial. So what I want to do is just update the hardware when the sliderReleased signal is sent. But the dials values can be changed by using the mouse scroll wheel or the left and right keyboard arrows without sending a sliderReleased signal. So my question: How can I make my dials ignore the key arrows and mouse scroll wheel so that the only way to change the dial is click it and drag it? Thanks in advance!