~etherpulse/podbird/add_description_to_full_view

« back to all changes in this revision

Viewing changes to app/podbird.qml

  • Committer: Eran Uzan
  • Date: 2017-06-02 14:48:30 UTC
  • Revision ID: etherpulse@gmail.com-20170602144830-cwvgpw2ucy6lylqf
Added episode description to the full player view.

Show diffs side-by-side

added added

removed removed

Lines of Context:
100
100
    property string currentArtist
101
101
    property string currentImage
102
102
    property string currentGuid
 
103
    property string currentDescription
103
104
    property url currentUrl: ""
104
105
 
105
106
    Themes.ThemeManager {
261
262
                image: "",
262
263
                guid: "",
263
264
                position: 0,
 
265
                description:"",
264
266
            }
265
267
 
266
268
            source = source.toString()
358
360
                currentImage = meta.image
359
361
                currentGuid = meta.guid
360
362
                player.pendingSeek = meta.position
 
363
                currentDescription = meta.description
361
364
            }
362
365
        }
363
366