~notes-app-dev/reminders-app/trunk

« back to all changes in this revision

Viewing changes to src/app/qml/ui/EditNoteView.qml

Always override image's widths to make it look good on our screen.

Approved by Riccardo Padovani, Ubuntu Phone Apps Jenkins Bot.

Show diffs side-by-side

added added

removed removed

Lines of Context:
81
81
         }
82
82
     }
83
83
 
 
84
    Binding {
 
85
        target: note
 
86
        property: "renderWidth"
 
87
        value: noteTextArea.width - noteTextArea.textMargin * 2
 
88
    }
 
89
 
84
90
    Column {
85
91
        anchors { left: parent.left; top: parent.top; right: parent.right; bottom: toolbox.top }
86
92