diff --git a/src/contents/ui/Tabs.qml b/src/contents/ui/Tabs.qml index d464c2d71138b9b02445ad95e80007ddefac1bfa..72c8c10ab78734cef6fe6374ac7a361b1fb315e0 100644 --- a/src/contents/ui/Tabs.qml +++ b/src/contents/ui/Tabs.qml @@ -221,6 +221,18 @@ Kirigami.ScrollablePage { width: label.width } } + + Image { + anchors { + bottom: tabItem.bottom + right: tabItem.right + bottomMargin: Kirigami.Units.smallSpacing + rightMargin: Kirigami.Units.smallSpacing + Kirigami.Units.largeSpacing + (tabsRoot.landscapeMode ? 0 : tabsRoot.width-grid.width) + } + fillMode: Image.PreserveAspectFit + height: Math.min(sourceSize.height, label.height) + source: tabs.itemAt(index).icon + } } }