diff options
author | kali kaneko (leap communications) <kali@leap.se> | 2021-12-08 19:51:42 +0100 |
---|---|---|
committer | kali kaneko (leap communications) <kali@leap.se> | 2021-12-08 19:54:35 +0100 |
commit | 68e9db0776225168bbb52d164b05b784466a28d8 (patch) | |
tree | 525687324ff88b17522bfec5691799d5677dd497 /gui/components/Footer.qml | |
parent | 371ee5167ce5e6fccc5a2a159343658f01ba74f7 (diff) |
[ui] theming stub
Diffstat (limited to 'gui/components/Footer.qml')
-rw-r--r-- | gui/components/Footer.qml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gui/components/Footer.qml b/gui/components/Footer.qml index 0c772ef..e6eb264 100644 --- a/gui/components/Footer.qml +++ b/gui/components/Footer.qml @@ -8,8 +8,8 @@ import "../themes/themes.js" as Theme ToolBar { - Material.background: Theme.bgColor - Material.foreground: "black" + Material.background: customTheme.bgColor + Material.foreground: "black" // TODO customize too Material.elevation: 0 visible: isFooterVisible() @@ -20,7 +20,7 @@ ToolBar { ToolButton { id: gwButton - visible: hasMultipleGateways() + visible: true anchors { verticalCenter: parent.verticalCenter |