Code review comment for lp:~zsombi/ubuntu-ui-toolkit/cppAbstractButton

Revision history for this message
Tim Peeters (tpeeters) wrote :

351 === modified file 'src/Ubuntu/Components/ListItems/1.2/SingleControl.qml'
360 + /*! \internal - overriding readonly pressed property due to the buggy pressed property exposure in former AbstractButton */
361 + property bool pressed: __mouseArea.pressed || (control && control.hasOwnProperty("pressed") && control.pressed)

I think we should override the property in Empty.qml instead to avoid problems in apps that have their own components deriving from Empty.

« Back to merge proposal