Hello,
I have ComboBox and do Scale transform on main QML object.
ComboBox and all children are scaled accordingly but unfortunately pop-up of ComboBox is not scaled.

I tried signals like on main object and on ComboBox:

Qt Code:
  1. onScaleChanged: {
  2. console.debug("scale changed")
  3. }
To copy to clipboard, switch view to plain text mode 

and

Qt Code:
  1. onTransformChanged: {
  2. console.debug("transform changed")
  3. }
To copy to clipboard, switch view to plain text mode 

that gives me an error:

Cannot assign to non-existent property "onTransformChanged"
onTransformChanged: {
^
How would I go about scaling popup?