1
0
mirror of https://github.com/tomahawk-player/tomahawk.git synced 2025-09-09 05:30:52 +02:00
Files
tomahawk/data/qml/stations/StationCreatorPage2.qml
Michael Zanetti 8894d16c87 Lots of cleanups
Add button capabilities to header
make use of header in stationview
2012-12-16 04:56:14 +01:00

26 lines
410 B
QML

import QtQuick 1.1
import tomahawk 1.0
import "../tomahawkimports"
Item {
id: root
property int margins: defaultFontHeight * 2
property alias content: contentLoader.source
signal next()
Loader {
id: contentLoader
anchors.fill: parent
anchors.margins: root.margins
}
Connections {
target: contentLoader.item
onDone: root.next()
}
}