summaryrefslogtreecommitdiff
path: root/gui/components/Footer.qml
diff options
context:
space:
mode:
authorkali <kali@leap.se>2021-10-04 12:59:01 +0200
committerkali kaneko (leap communications) <kali@leap.se>2021-11-23 21:51:17 +0100
commit7691f0f2967f721f3dee100956982ff625d7d945 (patch)
tree446fb202fd11a2802fd67e7b2df3050995c9f618 /gui/components/Footer.qml
parentf3ed99f26f6f6a7d2b3d7da47409b28b2e042c05 (diff)
[ui] workarounds for font in osx
Diffstat (limited to 'gui/components/Footer.qml')
-rw-r--r--gui/components/Footer.qml10
1 files changed, 9 insertions, 1 deletions
diff --git a/gui/components/Footer.qml b/gui/components/Footer.qml
index 71477b4..11f5114 100644
--- a/gui/components/Footer.qml
+++ b/gui/components/Footer.qml
@@ -11,7 +11,7 @@ ToolBar {
Material.background: Theme.bgColor
Material.foreground: "black"
Material.elevation: 0
- visible: stackView.depth > 1 && ctx !== undefined ? false : true
+ visible: isFooterVisible()
Item {
@@ -186,4 +186,12 @@ ToolBar {
return false
}
}
+
+ function isFooterVisible() {
+ console.debug(stackView.depth)
+ if (stackView.depth > 1) {
+ return false
+ }
+ return true
+ }
}