cf12defd28
Ultraworked with [Sisyphus](https://github.com/code-yeongyu/oh-my-openagent) Co-authored-by: Sisyphus <clio-agent@sisyphuslabs.ai>
18 lines
248 B
QML
18 lines
248 B
QML
import QtQuick 2.0
|
|
|
|
import org.kde.kquickcontrols 2.0
|
|
import QtQuick.Layouts 1.1
|
|
|
|
RowLayout {
|
|
|
|
KeySequenceItem
|
|
{
|
|
id: sequenceItem
|
|
modifierOnlyAllowed: true
|
|
}
|
|
Text
|
|
{
|
|
text: sequenceItem.keySequence
|
|
}
|
|
}
|