Commit 653cbfaf authored by Ronan Abhamon's avatar Ronan Abhamon

fix(app): many changes

parent 1def519d
...@@ -5,7 +5,7 @@ import 'qrc:/ui/components/form' ...@@ -5,7 +5,7 @@ import 'qrc:/ui/components/form'
import 'qrc:/ui/style/components' import 'qrc:/ui/style/components'
// =================================================================== // ===================================================================
// A simple dialog with OK/Cancel buttons. // A dialog with OK/Cancel buttons.
// =================================================================== // ===================================================================
DialogPlus { DialogPlus {
......
import QtQuick 2.7 import QtQuick 2.7
// ===================================================================
// An icon image properly resized.
// =================================================================== // ===================================================================
Image { Image {
......
import QtQuick 2.0 import QtQuick 2.7
import 'qrc:/ui/style/global' import 'qrc:/ui/style/global'
...@@ -49,9 +49,9 @@ Item { ...@@ -49,9 +49,9 @@ Item {
// See: http://doc.qt.io/qt-5/qml-qtqml-component.html#completed-signal // See: http://doc.qt.io/qt-5/qml-qtqml-component.html#completed-signal
// //
// The creation order of components in a view is undefined, // The creation order of components in a view is undefined,
// so the mouse area mustt be created only when `enabled == true`. // so the mouse area must be created only when `enabled == true`.
// //
// In the first view render, `enabled` must equal false. // In the first render, `enabled` must be equal to false.
Component.onCompleted: enabled && _createMouseArea() Component.onCompleted: enabled && _createMouseArea()
Component.onDestruction: _deleteMouseArea() Component.onDestruction: _deleteMouseArea()
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment