proper size hints for tab buttons

This commit is contained in:
Marco Martin 2012-08-17 15:33:46 +02:00
parent e8ef093ea8
commit dc424465d8

View File

@ -91,8 +91,8 @@ Item {
signal clicked signal clicked
implicitWidth: label.paintedWidth + (internal.portrait ? 0 : (iconSource != null ? 16 : 0)) implicitWidth: label.implicitWidth + (internal.portrait ? 0 : (iconSource != null ? 16 : 0))
implicitHeight: label.paintedHeight + (internal.portrait ? (iconSource != null ? 16 : 0) : 0) implicitHeight: label.implicitHeight + (internal.portrait ? (iconSource != null ? 16 : 0) : 0)
opacity: enabled ? 1 : 0.6 opacity: enabled ? 1 : 0.6
//long notation to not make it overwritten by implementations //long notation to not make it overwritten by implementations