From 6f364de06243a52126363dc5e8a046bbd902cb03 Mon Sep 17 00:00:00 2001 From: Brad Davis Date: Thu, 18 Feb 2016 18:39:25 -0800 Subject: [PATCH] Add a QML document referencing the QML multimedia types to force inclusion in the build --- interface/resources/qml/ForceLoad.qml | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 interface/resources/qml/ForceLoad.qml diff --git a/interface/resources/qml/ForceLoad.qml b/interface/resources/qml/ForceLoad.qml new file mode 100644 index 0000000000..55d8b98b1b --- /dev/null +++ b/interface/resources/qml/ForceLoad.qml @@ -0,0 +1,12 @@ +import QtQuick 2.0 +import QtMultimedia 5.5 + +Item { + Audio { + id: audio + autoLoad: true + autoPlay: true + loops: Audio.Infinite + } +} +