diff --git a/ground/openpilotgcs/src/plugins/welcome/qml/main.qml b/ground/openpilotgcs/src/plugins/welcome/qml/main.qml index 7425d906d..97ddb8e5d 100644 --- a/ground/openpilotgcs/src/plugins/welcome/qml/main.qml +++ b/ground/openpilotgcs/src/plugins/welcome/qml/main.qml @@ -135,15 +135,20 @@ Rectangle { text: welcomePlugin.newVersionText anchors.rightMargin: 0 font.bold: true + font.underline: true styleColor: "#00000000" horizontalAlignment: Text.AlignHCenter font.pixelSize: 14 anchors.left: textOpVersion.right - MouseArea{ + id: mouseAreaOpVersionAvailable + hoverEnabled: true + cursorShape: Qt.PointingHandCursor width: parent.width height: parent.height - onClicked: welcomePlugin.openUrl("http://wiki.openpilot.org/display/BUILDS/OpenPilot+Software+Downloads") + onClicked: { + welcomePlugin.openUrl("http://wiki.openpilot.org/display/BUILDS/OpenPilot+Software+Downloads") + } } } } diff --git a/ground/openpilotgcs/src/plugins/welcome/welcomemode.cpp b/ground/openpilotgcs/src/plugins/welcome/welcomemode.cpp index 090a77d85..f767fd21d 100644 --- a/ground/openpilotgcs/src/plugins/welcome/welcomemode.cpp +++ b/ground/openpilotgcs/src/plugins/welcome/welcomemode.cpp @@ -169,7 +169,7 @@ void WelcomeMode::networkResponseReady(QNetworkReply* reply) if(version != VersionInfo::tagOrHash8()) { - m_newVersionText = tr("(Update Available: %1)").arg(version); + m_newVersionText = tr("Update Available: %1").arg(version); emit newVersionTextChanged(); } }