aboutsummaryrefslogtreecommitdiff
path: root/components
diff options
context:
space:
mode:
authorluigi1111 <luigi1111w@gmail.com>2021-04-29 14:08:24 -0400
committerluigi1111 <luigi1111w@gmail.com>2021-04-29 14:08:24 -0400
commitdc3e35a92805ce428c1168a4253bcb35f44f7aaa (patch)
treebbea22665c230e06c310cd09adf6b25779807a10 /components
parent0ee5259466cfaa670cb0a7e05368e64e55007cc1 (diff)
parent989f135d9aee0f320306a6342fc8d6b484ef1759 (diff)
downloadmonzero-gui-dc3e35a92805ce428c1168a4253bcb35f44f7aaa.tar.gz
monzero-gui-dc3e35a92805ce428c1168a4253bcb35f44f7aaa.tar.xz
monzero-gui-dc3e35a92805ce428c1168a4253bcb35f44f7aaa.zip
Merge pull request #3434
989f135 Navbar: fix layout bug on resize (selsta)
Diffstat (limited to 'components')
-rw-r--r--components/Navbar.qml4
1 files changed, 2 insertions, 2 deletions
diff --git a/components/Navbar.qml b/components/Navbar.qml
index 7c4b8779..f7a55abf 100644
--- a/components/Navbar.qml
+++ b/components/Navbar.qml
@@ -129,8 +129,8 @@ Rectangle {
Layout.minimumHeight: 30
Layout.fillWidth: true
color: items[index].active ? grid.borderColor : "transparent"
- height: children[0].height
- width: children[0].width
+ implicitHeight: children[0].implicitHeight
+ implicitWidth: children[0].implicitWidth
MoneroComponents.TextPlain {
anchors.centerIn: parent