Include version string in update tooltip

This commit is contained in:
Cameron Gutman
2019-01-03 18:00:54 -08:00
parent e75dce2543
commit 34aacc90d7
3 changed files with 5 additions and 4 deletions
+2 -2
View File
@@ -235,7 +235,6 @@ ApplicationWindow {
ToolTip.delay: 1000
ToolTip.timeout: 3000
ToolTip.visible: hovered
ToolTip.text: "Update available for Moonlight"
// Invisible until we get a callback notifying us that
// an update is available
@@ -243,8 +242,9 @@ ApplicationWindow {
onClicked: Qt.openUrlExternally(browserUrl);
function updateAvailable(url)
function updateAvailable(version, url)
{
ToolTip.text = "Update available for Moonlight: Version " + version
updateButton.browserUrl = url
updateButton.visible = true
}