diff options
Diffstat (limited to 'gui/main.qml')
-rw-r--r-- | gui/main.qml | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/gui/main.qml b/gui/main.qml index 0024670..1c56925 100644 --- a/gui/main.qml +++ b/gui/main.qml @@ -22,7 +22,7 @@ ApplicationWindow { visible: true property int appHeight: 460 - property int appWidth: 260 + property int appWidth: 280 width: appWidth minimumWidth: appWidth @@ -53,6 +53,8 @@ ApplicationWindow { "blocked": "qrc:/assets/icon/png/white/vpn_blocked.png" } + signal openDonateDialog() + FontLoader { id: lightFont source: "qrc:/poppins-light.ttf" @@ -90,7 +92,7 @@ ApplicationWindow { ctx = JSON.parse(j) if (ctx != undefined) { locationsModel = getSortedLocations() - console.debug("Got sorted locations:" + locationsModel) + //console.debug("Got sorted locations: " + locationsModel) } if (ctx.errors) { console.debug("errors, setting root.error") |