broulik added inline comments.

INLINE COMMENTS

> PlaceholderMessage.qml:220
>  
> +        visible: text && text.length > 0
> +

`text` is a string property and as such always present, you can simplify this to

  visible: text !== ""

or

  visible: text.length > 0

REPOSITORY
  R169 Kirigami

REVISION DETAIL
  https://phabricator.kde.org/D29152

To: ngraham, iasensio, mart, #kirigami
Cc: broulik, iasensio, plasma-devel, fbampaloukas, GB_2, domson, dkardarakos, 
ngraham, apol, ahiemstra, davidedmundson, mart

Reply via email to