From 0db0c1cc039c55e984ffb0e07a999bf659d6e467 Mon Sep 17 00:00:00 2001 From: Fredrik Larsson Date: Wed, 24 Sep 2014 19:17:20 +1000 Subject: [PATCH 1/5] Save AuxMag settings --- ground/openpilotgcs/src/plugins/config/configrevowidget.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/ground/openpilotgcs/src/plugins/config/configrevowidget.cpp b/ground/openpilotgcs/src/plugins/config/configrevowidget.cpp index 9445c060e..c512e3cde 100644 --- a/ground/openpilotgcs/src/plugins/config/configrevowidget.cpp +++ b/ground/openpilotgcs/src/plugins/config/configrevowidget.cpp @@ -101,6 +101,7 @@ ConfigRevoWidget::ConfigRevoWidget(QWidget *parent) : addUAVObject("AttitudeSettings"); addUAVObject("RevoSettings"); addUAVObject("AccelGyroSettings"); + addUAVObject("AuxMagSettings"); autoLoadWidgets(); // accel calibration From 27f0e0678039789332aa38da03928bb24eb0b66c Mon Sep 17 00:00:00 2001 From: Laurent Lalanne Date: Wed, 24 Sep 2014 17:49:22 +0200 Subject: [PATCH 2/5] OP-1506 Wrong_display_alt_speed : Fix wrong scale display for speed and altitude. Hide scales (because do nothing) if no units defined in options km/h, m/s, knots, miles/h (speed) or meter / ft (altitude) --- .../pfd/default/AltitudeScale.qml | 61 ++++++--- .../share/openpilotgcs/pfd/default/Info.qml | 11 ++ .../share/openpilotgcs/pfd/default/Pfd.qml | 1 + .../openpilotgcs/pfd/default/SpeedScale.qml | 60 +++++--- .../openpilotgcs/pfd/default/VsiScale.qml | 9 -- .../share/openpilotgcs/pfd/default/pfd.svg | 129 ++++++++++-------- 6 files changed, 163 insertions(+), 108 deletions(-) diff --git a/ground/openpilotgcs/share/openpilotgcs/pfd/default/AltitudeScale.qml b/ground/openpilotgcs/share/openpilotgcs/pfd/default/AltitudeScale.qml index 18df7808e..9aaa82030 100644 --- a/ground/openpilotgcs/share/openpilotgcs/pfd/default/AltitudeScale.qml +++ b/ground/openpilotgcs/share/openpilotgcs/pfd/default/AltitudeScale.qml @@ -4,12 +4,16 @@ Item { id: sceneItem property variant sceneSize + property real altitude : -qmlWidget.altitudeFactor * PositionState.Down + SvgElementImage { id: altitude_window elementName: "altitude-window" sceneSize: sceneItem.sceneSize clip: true + visible: qmlWidget.altitudeUnit != 0 + property variant scaledBounds: svgRenderer.scaledElementBounds("pfd.svg", "altitude-window") x: Math.floor(scaledBounds.x * sceneItem.width) @@ -22,25 +26,25 @@ Item { sceneSize: sceneItem.sceneSize anchors.verticalCenter: parent.verticalCenter - // The altitude scale represents 30 meters, - // move it in 0..5m range - anchors.verticalCenterOffset: -height/30 * (PositionState.Down-Math.floor(PositionState.Down/5*qmlWidget.altitudeFactor)*5) + // The altitude scale represents 10 units (ft or meters), + // move using decimal term from value to display + anchors.verticalCenterOffset: height/10 * (altitude - Math.floor(altitude)) anchors.left: parent.left - property int topNumber: 15-Math.floor(PositionState.Down/5*qmlWidget.altitudeFactor)*5 + property int topNumber: Math.floor(altitude)+5 // Altitude numbers Column { Repeater { - model: 7 + model: 10 Item { - height: altitude_scale.height / 6 + height: altitude_scale.height / 10 width: altitude_window.width Text { - text: altitude_scale.topNumber - index*5 + text: altitude_scale.topNumber - index color: "white" - font.pixelSize: parent.height / 4 + font.pixelSize: parent.height / 3 font.family: "Arial" anchors.horizontalCenter: parent.horizontalCenter @@ -56,7 +60,7 @@ Item { elementName: "altitude-vector" sceneSize: sceneItem.sceneSize - height: -NedAccel.Down * altitude_scale.height/30 + height: -NedAccel.Down * altitude_scale.height/10 anchors.left: parent.left anchors.bottom: parent.verticalCenter @@ -71,7 +75,7 @@ Item { anchors.left: parent.left anchors.verticalCenter: parent.verticalCenter - anchors.verticalCenterOffset: -altitude_scale.height/30 * (PositionState.Down - PathDesired.End_Down) + anchors.verticalCenterOffset: -altitude_scale.height/10 * (PositionState.Down - PathDesired.End_Down) * qmlWidget.altitudeFactor } } @@ -79,6 +83,8 @@ Item { id: altitude_box clip: true + visible: qmlWidget.altitudeUnit != 0 + elementName: "altitude-box" sceneSize: sceneItem.sceneSize @@ -91,26 +97,39 @@ Item { Text { id: altitude_text - text: Math.floor(-PositionState.Down * qmlWidget.altitudeFactor).toFixed() + text: " " +altitude.toFixed(1) color: "white" font { family: "Arial" - pixelSize: parent.height * 0.4 + pixelSize: parent.height * 0.35 + weight: Font.DemiBold } anchors.centerIn: parent } } - Text { - id: altitude_unit_text - text: qmlWidget.altitudeUnit - color: "white" - font { - family: "Arial" - pixelSize: sceneSize.height * 0.025 - } + SvgElementImage { + id: altitude_unit_box + elementName: "altitude-unit-box" + sceneSize: sceneItem.sceneSize + + visible: qmlWidget.altitudeUnit != 0 + anchors.top: altitude_window.bottom anchors.right: altitude_window.right - anchors.margins: font.pixelSize * 0.3 + width: scaledBounds.width * sceneItem.width + height: scaledBounds.height * sceneItem.height + + Text { + id: altitude_unit_text + text: qmlWidget.altitudeUnit + color: "white" + font { + family: "Arial" + pixelSize: parent.height * 0.6 + weight: Font.DemiBold + } + anchors.centerIn: parent + } } } diff --git a/ground/openpilotgcs/share/openpilotgcs/pfd/default/Info.qml b/ground/openpilotgcs/share/openpilotgcs/pfd/default/Info.qml index 96897fc38..c22f60c60 100644 --- a/ground/openpilotgcs/share/openpilotgcs/pfd/default/Info.qml +++ b/ground/openpilotgcs/share/openpilotgcs/pfd/default/Info.qml @@ -70,6 +70,17 @@ Item { // End Functions // // Start Drawing + // Foreground (gradient) + + SvgElementImage { + id: foreground + elementName: "foreground" + sceneSize: info.sceneSize + + x: Math.floor(scaledBounds.x * info.width) + y: Math.floor(scaledBounds.y * info.height) + + } SvgElementImage { id: info_bg diff --git a/ground/openpilotgcs/share/openpilotgcs/pfd/default/Pfd.qml b/ground/openpilotgcs/share/openpilotgcs/pfd/default/Pfd.qml index 41a19ae69..e14e4a96b 100644 --- a/ground/openpilotgcs/share/openpilotgcs/pfd/default/Pfd.qml +++ b/ground/openpilotgcs/share/openpilotgcs/pfd/default/Pfd.qml @@ -76,6 +76,7 @@ Rectangle { VsiScale { anchors.fill: parent sceneSize: sceneItem.viewportSize + visible: qmlWidget.altitudeUnit != 0 } Info { diff --git a/ground/openpilotgcs/share/openpilotgcs/pfd/default/SpeedScale.qml b/ground/openpilotgcs/share/openpilotgcs/pfd/default/SpeedScale.qml index e0b971afa..cf51768e9 100644 --- a/ground/openpilotgcs/share/openpilotgcs/pfd/default/SpeedScale.qml +++ b/ground/openpilotgcs/share/openpilotgcs/pfd/default/SpeedScale.qml @@ -12,6 +12,8 @@ Item { sceneSize: sceneItem.sceneSize clip: true + visible: qmlWidget.speedUnit != 0 + x: Math.floor(scaledBounds.x * sceneItem.width) y: Math.floor(scaledBounds.y * sceneItem.height) @@ -22,12 +24,12 @@ Item { sceneSize: sceneItem.sceneSize anchors.verticalCenter: parent.verticalCenter - // The speed scale represents 30 meters, - // move it in 0..5m range - anchors.verticalCenterOffset: height/30 * (sceneItem.groundSpeed-Math.floor(sceneItem.groundSpeed/5)*5) + // The speed scale represents 10 units, + // move using decimal term from value to display + anchors.verticalCenterOffset: height/10 * (sceneItem.groundSpeed-Math.floor(sceneItem.groundSpeed)) anchors.right: parent.right - property int topNumber: Math.floor(sceneItem.groundSpeed/5)*5+15 + property int topNumber: Math.floor(sceneItem.groundSpeed)+5 // speed numbers Column { @@ -35,18 +37,18 @@ Item { anchors.right: speed_scale.right Repeater { - model: 7 + model: 10 Item { - height: speed_scale.height / 6 + height: speed_scale.height / 10 width: speed_window.width Text { //don't show negative numbers - text: speed_scale.topNumber - index*5 + text: speed_scale.topNumber - index color: "white" - visible: speed_scale.topNumber - index*5 >= 0 + visible: speed_scale.topNumber - index >= 0 - font.pixelSize: parent.height / 4 + font.pixelSize: parent.height / 3 font.family: "Arial" anchors.horizontalCenter: parent.horizontalCenter @@ -66,17 +68,18 @@ Item { anchors.right: parent.right anchors.verticalCenter: parent.verticalCenter - anchors.verticalCenterOffset: speed_scale.height/30 * (sceneItem.groundSpeed - PathDesired.EndingVelocity) + anchors.verticalCenterOffset: speed_scale.height/10 * (sceneItem.groundSpeed - (PathDesired.EndingVelocity * qmlWidget.speedFactor)) } } SvgElementImage { id: speed_box clip: true - elementName: "speed-box" sceneSize: sceneItem.sceneSize + visible: qmlWidget.speedUnit != 0 + x: scaledBounds.x * sceneItem.width y: scaledBounds.y * sceneItem.height width: scaledBounds.width * sceneItem.width @@ -84,26 +87,39 @@ Item { Text { id: speed_text - text: Math.round(sceneItem.groundSpeed).toFixed() + text: sceneItem.groundSpeed.toFixed(1)+" " color: "white" font { family: "Arial" - pixelSize: parent.height * 0.4 + pixelSize: parent.height * 0.35 + weight: Font.DemiBold } anchors.centerIn: parent } } - Text { - id: speed_unit_text - text: qmlWidget.speedUnit - color: "white" - font { - family: "Arial" - pixelSize: sceneSize.height * 0.025 - } + SvgElementImage { + id: speed_unit_box + elementName: "speed-unit-box" + sceneSize: sceneItem.sceneSize + + visible: qmlWidget.speedUnit != 0 + anchors.top: speed_window.bottom anchors.right: speed_window.right - anchors.margins: font.pixelSize * 0.3 + width: scaledBounds.width * sceneItem.width + height: scaledBounds.height * sceneItem.height + + Text { + id: speed_unit_text + text: qmlWidget.speedUnit + color: "white" + font { + family: "Arial" + pixelSize: parent.height * 0.6 + weight: Font.DemiBold + } + anchors.centerIn: parent + } } } diff --git a/ground/openpilotgcs/share/openpilotgcs/pfd/default/VsiScale.qml b/ground/openpilotgcs/share/openpilotgcs/pfd/default/VsiScale.qml index 033c8cb40..fe4fe6179 100644 --- a/ground/openpilotgcs/share/openpilotgcs/pfd/default/VsiScale.qml +++ b/ground/openpilotgcs/share/openpilotgcs/pfd/default/VsiScale.qml @@ -77,13 +77,4 @@ Item { } } - SvgElementImage { - id: foreground - elementName: "foreground" - sceneSize: sceneItem.sceneSize - - x: Math.floor(scaledBounds.x * sceneItem.width) - y: Math.floor(scaledBounds.y * sceneItem.height) - - } } diff --git a/ground/openpilotgcs/share/openpilotgcs/pfd/default/pfd.svg b/ground/openpilotgcs/share/openpilotgcs/pfd/default/pfd.svg index bde6f6681..665d48e11 100644 --- a/ground/openpilotgcs/share/openpilotgcs/pfd/default/pfd.svg +++ b/ground/openpilotgcs/share/openpilotgcs/pfd/default/pfd.svg @@ -328,11 +328,11 @@ borderopacity="1.0" inkscape:pageopacity="0.0" inkscape:pageshadow="2" - inkscape:zoom="2.1478368" - inkscape:cx="247.68069" - inkscape:cy="165.05075" + inkscape:zoom="1.0739184" + inkscape:cx="534.18699" + inkscape:cy="142.57283" inkscape:document-units="px" - inkscape:current-layer="layer77" + inkscape:current-layer="svg2" showgrid="false" fit-margin-top="0" fit-margin-left="0" @@ -352,7 +352,7 @@ inkscape:snap-bbox-midpoints="true" inkscape:snap-grids="false" inkscape:snap-to-guides="false" - inkscape:snap-nodes="false" + inkscape:snap-nodes="true" inkscape:bbox-paths="true" inkscape:snap-global="true" inkscape:snap-intersection-paths="true" @@ -377,7 +377,7 @@ id="guide8297" /> image/svg+xml - + @@ -442,7 +442,8 @@ inkscape:groupmode="layer" id="layer69" inkscape:label="foreground_layer" - style="display:inline"> + style="display:inline" + sodipodi:insensitive="true"> + style="display:none" + sodipodi:insensitive="true"> + style="display:inline" + sodipodi:insensitive="true"> + style="display:inline" + sodipodi:insensitive="true"> @@ -2622,7 +2626,8 @@ + inkscape:label="system-panel-mousearea" + sodipodi:insensitive="true"> + + + + + transform="translate(-20.837274,47.18067)"> - - - - - - - - + style="display:inline" + sodipodi:insensitive="true"> + + + + + + Date: Wed, 24 Sep 2014 19:19:21 +0200 Subject: [PATCH 3/5] OP-1506 Auto-select Vsi unit and scale from altitude unit : m/s or ft/s --- .../openpilotgcs/pfd/default/VsiScale.qml | 34 +- .../share/openpilotgcs/pfd/default/pfd.svg | 368 ++++++++++++++++-- 2 files changed, 361 insertions(+), 41 deletions(-) diff --git a/ground/openpilotgcs/share/openpilotgcs/pfd/default/VsiScale.qml b/ground/openpilotgcs/share/openpilotgcs/pfd/default/VsiScale.qml index fe4fe6179..5405e8dcd 100644 --- a/ground/openpilotgcs/share/openpilotgcs/pfd/default/VsiScale.qml +++ b/ground/openpilotgcs/share/openpilotgcs/pfd/default/VsiScale.qml @@ -46,9 +46,22 @@ Item { } SvgElementImage { - id: vsi_scale + id: vsi_scale_meter - elementName: "vsi-scale" + visible: qmlWidget.altitudeUnit == "m" + elementName: "vsi-scale-meter" + sceneSize: sceneItem.sceneSize + + x: Math.floor(scaledBounds.x * sceneItem.width) + y: Math.floor(scaledBounds.y * sceneItem.height) + + } + + SvgElementImage { + id: vsi_scale_ft + + visible: qmlWidget.altitudeUnit == "ft" + elementName: "vsi-scale-ft" sceneSize: sceneItem.sceneSize x: Math.floor(scaledBounds.x * sceneItem.width) @@ -77,4 +90,21 @@ Item { } } + SvgElementPositionItem { + id: vsi_unit_text + elementName: "vsi-unit-text" + sceneSize: sceneItem.sceneSize + + Text { + text: qmlWidget.altitudeUnit == "m" ? "m/s" : "ft/s" + color: "white" + font { + family: "Arial" + pixelSize: parent.height * 1.7 + weight: Font.DemiBold + } + anchors.centerIn: parent + } + } + } diff --git a/ground/openpilotgcs/share/openpilotgcs/pfd/default/pfd.svg b/ground/openpilotgcs/share/openpilotgcs/pfd/default/pfd.svg index 665d48e11..ba5bce349 100644 --- a/ground/openpilotgcs/share/openpilotgcs/pfd/default/pfd.svg +++ b/ground/openpilotgcs/share/openpilotgcs/pfd/default/pfd.svg @@ -328,11 +328,11 @@ borderopacity="1.0" inkscape:pageopacity="0.0" inkscape:pageshadow="2" - inkscape:zoom="1.0739184" - inkscape:cx="534.18699" - inkscape:cy="142.57283" + inkscape:zoom="1.51875" + inkscape:cx="320" + inkscape:cy="240" inkscape:document-units="px" - inkscape:current-layer="svg2" + inkscape:current-layer="layer99" showgrid="false" fit-margin-top="0" fit-margin-left="0" @@ -348,15 +348,15 @@ inkscape:object-nodes="true" inkscape:object-paths="false" inkscape:snap-bbox="true" - inkscape:bbox-nodes="true" + inkscape:bbox-nodes="false" inkscape:snap-bbox-midpoints="true" inkscape:snap-grids="false" inkscape:snap-to-guides="false" inkscape:snap-nodes="true" - inkscape:bbox-paths="true" + inkscape:bbox-paths="false" inkscape:snap-global="true" - inkscape:snap-intersection-paths="true" - inkscape:snap-object-midpoints="true" + inkscape:snap-intersection-paths="false" + inkscape:snap-object-midpoints="false" inkscape:snap-center="false" inkscape:snap-bbox-edge-midpoints="false"> + transform="translate(0,-4)" + sodipodi:insensitive="true"> + style="fill:#373737;fill-opacity:1;stroke:#ffffff;stroke-width:0.599971;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /> + style="fill:url(#linearGradient12811);fill-opacity:1;stroke:#ffffff;stroke-width:0.60000002;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /> + sodipodi:insensitive="true"> + + + + + + + inkscape:label="vsi-arrow" + style="display:inline" + sodipodi:insensitive="true"> @@ -6370,7 +6394,7 @@ inkscape:groupmode="layer" id="layer79" inkscape:label="vsi-waypoint" - style="display:inline" + style="display:none" sodipodi:insensitive="true"> - - - - - @@ -6604,6 +6608,292 @@ + Date: Wed, 24 Sep 2014 19:49:06 +0200 Subject: [PATCH 4/5] OP-1506 Speed, altitude and vertical speed units in cyan --- .../share/openpilotgcs/pfd/default/AltitudeScale.qml | 2 +- .../openpilotgcs/share/openpilotgcs/pfd/default/SpeedScale.qml | 2 +- ground/openpilotgcs/share/openpilotgcs/pfd/default/VsiScale.qml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/ground/openpilotgcs/share/openpilotgcs/pfd/default/AltitudeScale.qml b/ground/openpilotgcs/share/openpilotgcs/pfd/default/AltitudeScale.qml index 9aaa82030..52d6fd09c 100644 --- a/ground/openpilotgcs/share/openpilotgcs/pfd/default/AltitudeScale.qml +++ b/ground/openpilotgcs/share/openpilotgcs/pfd/default/AltitudeScale.qml @@ -123,7 +123,7 @@ Item { Text { id: altitude_unit_text text: qmlWidget.altitudeUnit - color: "white" + color: "cyan" font { family: "Arial" pixelSize: parent.height * 0.6 diff --git a/ground/openpilotgcs/share/openpilotgcs/pfd/default/SpeedScale.qml b/ground/openpilotgcs/share/openpilotgcs/pfd/default/SpeedScale.qml index cf51768e9..d86332410 100644 --- a/ground/openpilotgcs/share/openpilotgcs/pfd/default/SpeedScale.qml +++ b/ground/openpilotgcs/share/openpilotgcs/pfd/default/SpeedScale.qml @@ -113,7 +113,7 @@ Item { Text { id: speed_unit_text text: qmlWidget.speedUnit - color: "white" + color: "cyan" font { family: "Arial" pixelSize: parent.height * 0.6 diff --git a/ground/openpilotgcs/share/openpilotgcs/pfd/default/VsiScale.qml b/ground/openpilotgcs/share/openpilotgcs/pfd/default/VsiScale.qml index 5405e8dcd..144c467f3 100644 --- a/ground/openpilotgcs/share/openpilotgcs/pfd/default/VsiScale.qml +++ b/ground/openpilotgcs/share/openpilotgcs/pfd/default/VsiScale.qml @@ -97,7 +97,7 @@ Item { Text { text: qmlWidget.altitudeUnit == "m" ? "m/s" : "ft/s" - color: "white" + color: "cyan" font { family: "Arial" pixelSize: parent.height * 1.7 From 565c86060f392aebc92c65656780093ee2e7a964 Mon Sep 17 00:00:00 2001 From: Laurent Lalanne Date: Wed, 24 Sep 2014 20:54:54 +0200 Subject: [PATCH 5/5] OP-1506 Remove Svg gradient, now draw in qml (linear from middle). Remove Vsi scale background. --- .../share/openpilotgcs/pfd/default/Info.qml | 11 --------- .../openpilotgcs/pfd/default/PfdWorldView.qml | 2 ++ .../openpilotgcs/pfd/default/VsiScale.qml | 13 ----------- .../share/openpilotgcs/pfd/default/pfd.svg | 23 ++++++------------- 4 files changed, 9 insertions(+), 40 deletions(-) diff --git a/ground/openpilotgcs/share/openpilotgcs/pfd/default/Info.qml b/ground/openpilotgcs/share/openpilotgcs/pfd/default/Info.qml index c22f60c60..96897fc38 100644 --- a/ground/openpilotgcs/share/openpilotgcs/pfd/default/Info.qml +++ b/ground/openpilotgcs/share/openpilotgcs/pfd/default/Info.qml @@ -70,17 +70,6 @@ Item { // End Functions // // Start Drawing - // Foreground (gradient) - - SvgElementImage { - id: foreground - elementName: "foreground" - sceneSize: info.sceneSize - - x: Math.floor(scaledBounds.x * info.width) - y: Math.floor(scaledBounds.y * info.height) - - } SvgElementImage { id: info_bg diff --git a/ground/openpilotgcs/share/openpilotgcs/pfd/default/PfdWorldView.qml b/ground/openpilotgcs/share/openpilotgcs/pfd/default/PfdWorldView.qml index b2b1d2e6a..f72ddd9df 100644 --- a/ground/openpilotgcs/share/openpilotgcs/pfd/default/PfdWorldView.qml +++ b/ground/openpilotgcs/share/openpilotgcs/pfd/default/PfdWorldView.qml @@ -20,8 +20,10 @@ Item { property double pitch1DegHeight: sceneItem.height*pitch1DegScaledHeight gradient: Gradient { + GradientStop { position: 0.4000; color: "#013163" } GradientStop { position: 0.4999; color: "#0164CC" } GradientStop { position: 0.5001; color: "#653300" } + GradientStop { position: 0.6000; color: "#3C1E00" } } transform: [ diff --git a/ground/openpilotgcs/share/openpilotgcs/pfd/default/VsiScale.qml b/ground/openpilotgcs/share/openpilotgcs/pfd/default/VsiScale.qml index 144c467f3..166f3bb22 100644 --- a/ground/openpilotgcs/share/openpilotgcs/pfd/default/VsiScale.qml +++ b/ground/openpilotgcs/share/openpilotgcs/pfd/default/VsiScale.qml @@ -10,19 +10,6 @@ Item { onTriggered: vert_velocity = (0.9 * vert_velocity) + (0.1 * VelocityState.Down) } - - - SvgElementImage { - id: vsi_window - elementName: "vsi-window" - sceneSize: sceneItem.sceneSize - clip: true - - x: Math.floor(scaledBounds.x * sceneItem.width) - y: Math.floor(scaledBounds.y * sceneItem.height) - - } - SvgElementImage { id: vsi_waypoint elementName: "vsi-waypoint" diff --git a/ground/openpilotgcs/share/openpilotgcs/pfd/default/pfd.svg b/ground/openpilotgcs/share/openpilotgcs/pfd/default/pfd.svg index ba5bce349..b1e6f8fc5 100644 --- a/ground/openpilotgcs/share/openpilotgcs/pfd/default/pfd.svg +++ b/ground/openpilotgcs/share/openpilotgcs/pfd/default/pfd.svg @@ -328,11 +328,11 @@ borderopacity="1.0" inkscape:pageopacity="0.0" inkscape:pageshadow="2" - inkscape:zoom="1.51875" - inkscape:cx="320" - inkscape:cy="240" + inkscape:zoom="0.53695921" + inkscape:cx="434.93494" + inkscape:cy="91.012892" inkscape:document-units="px" - inkscape:current-layer="layer99" + inkscape:current-layer="layer69" showgrid="false" fit-margin-top="0" fit-margin-left="0" @@ -443,14 +443,7 @@ id="layer69" inkscape:label="foreground_layer" style="display:inline" - sodipodi:insensitive="true"> - - + sodipodi:insensitive="true" /> + style="display:inline"> + style="display:inline">