~ubuntu-branches/ubuntu/wily/gallery-app/wily-proposed

« back to all changes in this revision

Viewing changes to rc/qml/OrganicView/OrganicView.qml

  • Committer: Package Import Robot
  • Author(s): Ubuntu daily release, Arthur Mello, Ubuntu daily release
  • Date: 2014-11-12 22:27:36 UTC
  • mfrom: (1.1.82)
  • Revision ID: package-import@ubuntu.com-20141112222736-699e99y9gf2tswaw
Tags: 0.0.67+15.04.20141112-0ubuntu1
[ Arthur Mello ]
* Delay the opening photo process until all media files are loaded
  when called by url handler (LP: #1389514)
* Switch to events view after a media imported (LP: #1382109)
* Set the TimeDigitized Exif field for the import date on imported
  files (LP: #1381583)

[ Ubuntu daily release ]
* New rebuild forced

Show diffs side-by-side

added added

removed removed

Lines of Context:
29
29
    /*!
30
30
    */
31
31
    signal mediaSourcePressed(var mediaSource, var thumbnailRect)
 
32
    signal positionEventsAtBeginning()
32
33
 
33
34
    /*!
34
35
    */
54
55
    // can't access C++ objects
55
56
    property int _eventCount: model.count
56
57
 
 
58
    function positionViewAtBeginning() {
 
59
        organicList.positionViewAtBeginning();
 
60
        organicList.contentY = header.height * -1;
 
61
        positionEventsAtBeginning()
 
62
    }
 
63
 
57
64
    Image {
58
65
        anchors.fill: parent
59
66