1

According to the Qt documentation:

void QAbstractSpinBox::editingFinished () [signal]
This signal is emitted editing is finished. This happens when the spinbox loses focus and when enter is pressed.

Is it possible (preferably out-of-the-box) to have this signal fire on every change of the spinbox, not just enter or lose focus?

Jeroen Dierckx
  • 1,570
  • 1
  • 15
  • 27

1 Answers1

4

That is different. You can use valueChanged() signal instead.

Donotalo
  • 12,748
  • 25
  • 83
  • 121