mirror of
https://github.com/subsurface/subsurface.git
synced 2024-12-01 06:30:26 +00:00
4c4222d611
In commitf3d978b8a5
the QtQuick version was upgraded to 2.6 (from 2.0 for the mapwidget). This is, apparently, too agressive, as there are still mainstream distributions that are still on Qt 5.5.1 for which 2.6 of QtQuick is too new. And as a sidenote: Qt 5.5.1 was released in October 2015. So partially revert commitf3d978b8a5
. Fixes: #978 Signed-off-by: Jan Mulder <jlmulder@xs4all.nl>
13 lines
303 B
QML
13 lines
303 B
QML
// SPDX-License-Identifier: GPL-2.0
|
|
import QtQuick 2.0
|
|
|
|
Item {
|
|
Text {
|
|
anchors.fill: parent
|
|
horizontalAlignment: Text.AlignHCenter
|
|
verticalAlignment: Text.AlignVCenter
|
|
color: "red"
|
|
text: qsTr("MapWidget.qml failed to load!
|
|
The QML modules QtPositioning and QtLocation could be missing!")
|
|
}
|
|
}
|