From c3414a63c235522b5abace8f9f6359a8272ce701 Mon Sep 17 00:00:00 2001 From: James Turner Date: Wed, 13 Jun 2018 10:55:04 +0100 Subject: [PATCH] Fix the launcher summary license link --- src/GUI/qml/Summary.qml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/GUI/qml/Summary.qml b/src/GUI/qml/Summary.qml index f445478f3..5232196c5 100644 --- a/src/GUI/qml/Summary.qml +++ b/src/GUI/qml/Summary.qml @@ -96,14 +96,14 @@ Item { // dynamic text sizing, so bind it manually y: logoText.y + Style.margin + logoText.contentHeight wrapMode: Text.WordWrap - text: "Licenced under the GNU Public License (GPL) version 2.0 - click for more info" + text: "Licenced under the GNU Public License (GPL)- click for more info" baseTextColor: "white" style: Text.Outline styleColor: "black" font.bold: true onClicked: { - _launcher.launchUrl("http://flightgear.org/license.html"); + _launcher.launchUrl("http://home.flightgear.org/about/"); } }