Does itemChange respond to a coded change?

45 Views Asked by At

Assuming that it has been enabled, will itemChange be called if the change is induced by the program itself via, for example, a setPos?

1

There are 1 best solutions below

0
On

According to the Qt documentation, yes, the itemChange() function will be called after setPos() function call:

[..] as the setPos() function will again call itemChange(ItemPositionChange).