View Single Post
Posts: 3,328 | Thanked: 4,476 times | Joined on May 2011 @ Poland
#26
Originally Posted by Slocan View Post
You can use Rectangles, or Items.
But then I'll have to specify the height. And I want the spacer to automatically detect the space to take


Originally Posted by nicolai View Post
tracksrcChanged is a signal in Column
you can not access it within
Code:
Button {
id: selecttrack
onTracksrcChanged { ...
}
the onTracksrcChanged would work, only if trackSrcChanged is a property of
selecttrack

The easier solution would be:
Code:
Button
        {
            id: selecttrack
            text: "No track selected"
            checkable: false
            width: screenwidth
            visible:tracksrc.checked
            onClicked:
            {
                console.log("Select track button clicked")
                pageStack.push(Qt.resolvedUrl("SelectTrackPage.qml"))
            }
}
Is it possible to specify an animation for this?
__________________
If you want to support my work, you can donate by PayPal or Flattr

Projects no longer actively developed: here