[qt] disable qml Connections that create a crash on Qt 5.11

Disable them temporarily, but we need to find an alternative.
This commit is contained in:
Fabien Castan 2018-05-20 22:42:29 +02:00
parent 4151ab9ac0
commit 3c6ebf3df4

View file

@ -206,9 +206,9 @@ ApplicationWindow {
dialog.text = args[1]
dialog.detailedText = args[2]
}
onInfo: createDialog(dialogsFactory.info, arguments)
onWarning: createDialog(dialogsFactory.warning, arguments)
onError: createDialog(dialogsFactory.error, arguments)
// onInfo: createDialog(dialogsFactory.info, arguments)
// onWarning: createDialog(dialogsFactory.warning, arguments)
// onError: createDialog(dialogsFactory.error, arguments)
}
Action {