~etherpulse/podbird/playback_rate

« back to all changes in this revision

Viewing changes to app/ui/ImportPage.qml

  • Committer: Mike Sheldon
  • Date: 2020-04-09 10:53:12 UTC
  • Revision ID: mike@mikeasoft.com-20200409105312-kv6d7ujsdswuj3ii
Minor code cleanups

Show diffs side-by-side

added added

removed removed

Lines of Context:
3
3
import Ubuntu.Content 1.3
4
4
 
5
5
 
6
 
 
7
6
Page {
8
7
    id: picker
9
8
    property var activeTransfer
23
22
        anchors { fill: parent; topMargin: picker.header.height }
24
23
        visible: parent.visible
25
24
        showTitle: false
26
 
        contentType: picker.contentType //ContentType.Pictures
27
 
        handler: picker.handler //ContentHandler.Source
 
25
        contentType: picker.contentType
 
26
        handler: picker.handler
28
27
 
29
28
        onPeerSelected: {
30
29
            peer.selectionType = ContentTransfer.Single
44
43
            })
45
44
        }
46
45
 
47
 
 
48
46
        onCancelPressed: {
49
47
            pageStack.pop()
50
48
        }
55
53
        anchors.fill: parent
56
54
        activeTransfer: picker.activeTransfer
57
55
    }
 
56
 
58
57
    Component {
59
58
        id: resultComponent
60
59
        ContentItem {}