mirror of
https://github.com/tuxdotrs/tshell.git
synced 2026-09-20 02:49:02 +05:30
22 lines
402 B
QML
22 lines
402 B
QML
pragma ComponentBehavior: Bound
|
|
|
|
import QtQuick.Layouts
|
|
import qs.ui
|
|
import qs.services
|
|
|
|
RowLayout {
|
|
BarButton {
|
|
hoverHighlight: false
|
|
pointerCursor: false
|
|
label: Audio.inputName
|
|
iconSource: Audio.inputIcon
|
|
}
|
|
|
|
BarButton {
|
|
hoverHighlight: false
|
|
pointerCursor: false
|
|
label: Audio.outputName
|
|
iconSource: Audio.outputIcon
|
|
}
|
|
}
|