summaryrefslogtreecommitdiff
path: root/gui/main.qml
diff options
context:
space:
mode:
authorkali kaneko (leap communications) <kali@leap.se>2021-11-30 18:56:27 +0100
committerkali kaneko (leap communications) <kali@leap.se>2021-11-30 21:22:46 +0100
commitcc1b7ae17304cfe62da0bb77be507296404918b4 (patch)
treea8fe97f3fcf97e2aabafc1b518d3ab2ac2fbaee6 /gui/main.qml
parent52206cc7dda3d12d92dad3181e27b680c70e69e3 (diff)
[ui] svg love
tweak sizes and alignments
Diffstat (limited to 'gui/main.qml')
-rw-r--r--gui/main.qml10
1 files changed, 1 insertions, 9 deletions
diff --git a/gui/main.qml b/gui/main.qml
index d9cbec4..116aba3 100644
--- a/gui/main.qml
+++ b/gui/main.qml
@@ -30,7 +30,7 @@ ApplicationWindow {
minimumHeight: appHeight
maximumHeight: appHeight
- title: ctx ? ctx.appName : "VPN"
+ title: ctx ? ctx.appName : ""
Material.accent: Material.Green
property var ctx
@@ -98,7 +98,6 @@ ApplicationWindow {
ctx = JSON.parse(j)
if (ctx != undefined) {
locationsModel = getSortedLocations()
- //console.debug("Got sorted locations: " + locationsModel)
}
if (ctx.errors) {
console.debug("errors, setting root.error")
@@ -168,12 +167,5 @@ ApplicationWindow {
Component.onCompleted: {
loader.source = "components/Splash.qml"
- // XXX workaround for custom font not working in osx
- /*
- if (Qt.platform.os === "osx") {
- root.font.family = robotoFont.name
- root.font.weight = Font.Light
- }
- */
}
}