From f8c05f3dee29c7ab1eb3eba82c917fe18333fc41 Mon Sep 17 00:00:00 2001 From: "kali kaneko (leap communications)" Date: Fri, 9 Oct 2020 21:58:15 +0200 Subject: [pkg] add vendor icon to app --- gui/qml/AboutDialog.qml | 1 + gui/qml/main.qml | 10 +++++++--- 2 files changed, 8 insertions(+), 3 deletions(-) (limited to 'gui/qml') diff --git a/gui/qml/AboutDialog.qml b/gui/qml/AboutDialog.qml index a101ea3..bd3d77e 100644 --- a/gui/qml/AboutDialog.qml +++ b/gui/qml/AboutDialog.qml @@ -5,6 +5,7 @@ MessageDialog { title: qsTr("About") text: getText() informativeText: getVersion() + icon: StandardIcon.Information function getText() { var _name = ctx ? ctx.appName : "vpn" diff --git a/gui/qml/main.qml b/gui/qml/main.qml index ce72fff..dcffcde 100644 --- a/gui/qml/main.qml +++ b/gui/qml/main.qml @@ -42,6 +42,9 @@ ApplicationWindow { showInitFailure() } } + if (ctx.donateURL) { + donateItem.visible = true + } } } @@ -98,8 +101,8 @@ ApplicationWindow { allowEmptyPass = shouldAllowEmptyPass() app.visible = true; - show(); - hide(); + //show(); + //hide(); } function toHuman(st) { @@ -251,8 +254,9 @@ ApplicationWindow { } MenuItem { + id: donateItem text: qsTr("Donate...") - visible: ctx && ctx.donateURL + visible: ctx ? ctx.donateURL : false onTriggered: { donate.visible = true } } -- cgit v1.2.3