fix: behaviour tab is now first

This commit is contained in:
Mikhail Zolotukhin 2021-11-10 14:40:19 +03:00
parent ec362496b7
commit ae0a594bb8

View File

@ -31,11 +31,11 @@ KCM.SimpleKCM {
Layout.bottomMargin: -1
QQC2.TabButton {
text: i18n("Appearance")
text: i18n("Behavior")
}
QQC2.TabButton {
text: i18n("Behavior")
text: i18n("Appearance")
}
}
@ -51,14 +51,14 @@ KCM.SimpleKCM {
// but necessary for adequate padding
anchors.topMargin: Kirigami.Units.gridUnit * -0.5
Appearance {
}
// For some reason QML is very British and
// refuses to load the Behavior.qml (without "u")
Behaviour {
}
Appearance {
}
}
}