~artmello/gallery-app/gallery-app-fix_crash_adding_files

« back to all changes in this revision

Viewing changes to rc/qml/MediaViewer/GalleryPhotoEditorPage.qml

Remove local copy of PhotoEditor and keep using only the Ubuntu Extras one Fixes: #1524973

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/*
2
 
 * Copyright (C) 2014-2015 Canonical Ltd
3
 
 *
4
 
 * This program is free software: you can redistribute it and/or modify
5
 
 * it under the terms of the GNU General Public License version 3 as
6
 
 * published by the Free Software Foundation.
7
 
 *
8
 
 * This program is distributed in the hope that it will be useful,
9
 
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10
 
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
11
 
 * GNU General Public License for more details.
12
 
 *
13
 
 * You should have received a copy of the GNU General Public License
14
 
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
15
 
 */
16
 
 
17
 
import QtQuick 2.4
18
 
import Ubuntu.Components 1.3
19
 
 
20
 
Page {
21
 
    id: page
22
 
    property string photo
23
 
    signal done(bool photoWasModified)
24
 
 
25
 
    title: i18n.tr("Edit Photo")
26
 
 
27
 
    head.backAction: Action {
28
 
        iconName: "back"
29
 
        onTriggered: editor.close(true)
30
 
    }
31
 
    head.actions: editor.actions
32
 
 
33
 
    PhotoEditor {
34
 
        id: editor
35
 
        anchors.fill: parent
36
 
        onClosed: page.done(photoWasModified)
37
 
    }
38
 
 
39
 
    onActiveChanged: {
40
 
        if (active) editor.open(page.photo)
41
 
    }
42
 
}