painterMightChange method

bool painterMightChange()

Utility method used by the SceneBuilderWidget to set the flag CustomPaint.willChange

Implementation

bool painterMightChange() {
  if (useTicker || autoUpdateRender || usePointer || useKeyboard) {
    return true;
  }
  return painterWillChange;
}