29 lines
535 B
QML
29 lines
535 B
QML
// SPDX-License-Identifier: LGPL-3.0-or-later
|
|
|
|
import QtQuick 2.12
|
|
import QtQuick.Controls 2.12
|
|
import "../ShortcutBundles"
|
|
|
|
TabBar {
|
|
id: tabBar
|
|
|
|
property alias shortcutsEnabled: tabShortcuts.active
|
|
|
|
spacing: 0
|
|
position: TabBar.Header
|
|
|
|
background: Item {
|
|
Rectangle {
|
|
width: parent.width
|
|
anchors.bottom: parent.bottom
|
|
height: 2
|
|
color: theme.controls.tab.bottomLine
|
|
}
|
|
}
|
|
|
|
TabShortcuts {
|
|
id: tabShortcuts
|
|
container: tabBar
|
|
}
|
|
}
|