moment/src/gui/Base/HTabBar.qml

26 lines
452 B
QML
Raw Normal View History

2019-12-19 22:46:16 +11:00
// SPDX-License-Identifier: LGPL-3.0-or-later
import QtQuick 2.12
import QtQuick.Controls 2.12
import "../ShortcutBundles"
TabBar {
id: tabBar
spacing: 0
position: TabBar.Header
2020-03-19 18:33:46 +11:00
background: Item {
Rectangle {
width: parent.width
anchors.bottom: parent.bottom
height: 2
color: theme.controls.tab.bottomLine
}
}
TabShortcuts {
container: tabBar
}
}