[app] Fixed opening external links
This commit is contained in:
parent
f79b2f17ad
commit
60f2b1edec
1 changed files with 15 additions and 12 deletions
|
@ -1,6 +1,6 @@
|
||||||
/*
|
/*
|
||||||
Copyright (C) 2016 Jolla Ltd.
|
Copyright (C) 2016-2021 Jolla Ltd.
|
||||||
Contact: Slava Monich <slava.monich@jolla.com>
|
Copyright (C) 2016-2021 Slava Monich <slava.monich@jolla.com>
|
||||||
|
|
||||||
You may use this file under the terms of BSD license as follows:
|
You may use this file under the terms of BSD license as follows:
|
||||||
|
|
||||||
|
@ -8,14 +8,15 @@
|
||||||
modification, are permitted provided that the following conditions
|
modification, are permitted provided that the following conditions
|
||||||
are met:
|
are met:
|
||||||
|
|
||||||
* Redistributions of source code must retain the above copyright
|
1. Redistributions of source code must retain the above copyright
|
||||||
notice, this list of conditions and the following disclaimer.
|
notice, this list of conditions and the following disclaimer.
|
||||||
* Redistributions in binary form must reproduce the above copyright
|
2. Redistributions in binary form must reproduce the above copyright
|
||||||
notice, this list of conditions and the following disclaimer in the
|
notice, this list of conditions and the following disclaimer
|
||||||
documentation and/or other materials provided with the distribution.
|
in the documentation and/or other materials provided with the
|
||||||
* Neither the name of Jolla Ltd nor the names of its contributors
|
distribution.
|
||||||
may be used to endorse or promote products derived from this software
|
3. Neither the names of the copyright holders nor the names of its
|
||||||
without specific prior written permission.
|
contributors may be used to endorse or promote products derived
|
||||||
|
from this software without specific prior written permission.
|
||||||
|
|
||||||
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
||||||
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
||||||
|
@ -35,6 +36,7 @@ import Sailfish.Silica 1.0
|
||||||
|
|
||||||
Rectangle {
|
Rectangle {
|
||||||
id: root
|
id: root
|
||||||
|
|
||||||
visible: opacity > 0.0
|
visible: opacity > 0.0
|
||||||
opacity: 0.0
|
opacity: 0.0
|
||||||
width: parent.width
|
width: parent.width
|
||||||
|
@ -60,6 +62,7 @@ Rectangle {
|
||||||
|
|
||||||
Label {
|
Label {
|
||||||
id: title
|
id: title
|
||||||
|
|
||||||
anchors.horizontalCenter: parent.horizontalCenter
|
anchors.horizontalCenter: parent.horizontalCenter
|
||||||
//: External link menu title
|
//: External link menu title
|
||||||
//% "Link"
|
//% "Link"
|
||||||
|
@ -113,9 +116,9 @@ Rectangle {
|
||||||
//% "Open in browser"
|
//% "Open in browser"
|
||||||
text: qsTrId("harbour-books-book-browser_link-open_in_browser")
|
text: qsTrId("harbour-books-book-browser_link-open_in_browser")
|
||||||
onClicked: {
|
onClicked: {
|
||||||
console.log("opening", root.url)
|
console.log("opening", linkLabel.text)
|
||||||
root.hide()
|
root.hide()
|
||||||
Qt.openUrlExternally(root.url)
|
Qt.openUrlExternally(linkLabel.text)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue