[Solved]Back icon button when disabled ?
-
Which version of Qt Components do you use?
If you use those for MeeGo, search in SDK folder for "icon-m-toolbar-back". You will find a folder full with icons. There should be disabled version of toolbar-back icon.
-
In sdk i'm not found icon-m-toolbar-back :(.
But i found the way to solve it:
@
ToolIcon {
iconSource: enabled ? (theme.inverted ? "image://theme/icon-m-toolbar-back-white" : "image://theme/icon-m-toolbar-back-white")
: (theme.inverted ? "image://theme/icon-m-toolbar-back-dimmed-white" : "image://theme/icon-m-toolbar-back-dimmed")
}@
[edit, please use @ code tags for your code, Eddy]