feat: show local users's messages on right

This commit is contained in:
Srevin Saju
2021-06-13 18:52:17 +00:00
committed by Carl Schwan
parent 68194055aa
commit b412719f2c
3 changed files with 56 additions and 4 deletions

View File

@@ -204,6 +204,14 @@ Kirigami.ScrollablePage {
Config.save();
}
}
QQC2.CheckBox {
text: i18n("Show your messages on the right")
checked: Config.showLocalMessagesOnRight
onToggled: {
Config.showLocalMessagesOnRight = checked
Config.save()
}
}
}
}
}