diff options
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 |