Allow the delegate and bubble widths to grow when the ListView is very wide.

Disable user message on the right setting when in compact mode as it doesn't work anyway.
This commit is contained in:
James Graham
2022-07-03 14:26:08 +01:00
parent a96e8958c9
commit a7c137ca39
2 changed files with 7 additions and 5 deletions

View File

@@ -245,7 +245,7 @@ Kirigami.ScrollablePage {
QQC2.CheckBox {
text: i18n("Show your messages on the right")
checked: Config.showLocalMessagesOnRight
enabled: !Config.isShowLocalMessagesOnRightImmutable
enabled: !Config.isShowLocalMessagesOnRightImmutable && !Config.compactLayout
onToggled: {
Config.showLocalMessagesOnRight = checked
Config.save()