vlc | branch: master | Pierre Lamot <[email protected]> | Thu Jun 13 18:44:13 2019 +0200| [81a1225dc270a43a151e4a8a3b394a04b356ae2c] | committer: Jean-Baptiste Kempf
qml: show error reason when view can't be loaded Signed-off-by: Jean-Baptiste Kempf <[email protected]> > http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=81a1225dc270a43a151e4a8a3b394a04b356ae2c --- modules/gui/qt/qml/utils/StackViewExt.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/gui/qt/qml/utils/StackViewExt.qml b/modules/gui/qt/qml/utils/StackViewExt.qml index b1b1bbf9c9..7d988ad555 100644 --- a/modules/gui/qt/qml/utils/StackViewExt.qml +++ b/modules/gui/qt/qml/utils/StackViewExt.qml @@ -75,7 +75,7 @@ StackView { found = true break; } else { - console.warn("component is not ready") + console.warn("component is not ready: " + component.errorString()) } } } _______________________________________________ vlc-commits mailing list [email protected] https://mailman.videolan.org/listinfo/vlc-commits
