Merge pull request #1084 from Nheko-Reborn/uiTweaks
Indicate if no topic is set
This commit is contained in:
commit
7060693c61
@ -194,7 +194,12 @@ ApplicationWindow {
|
||||
|
||||
readOnly: !isTopicEditingAllowed
|
||||
textFormat: isTopicEditingAllowed ? TextEdit.PlainText : TextEdit.RichText
|
||||
text: isTopicEditingAllowed ? roomSettings.plainRoomTopic : roomSettings.roomTopic
|
||||
text: {
|
||||
if (roomSettings.plainRoomTopic === "")
|
||||
return qsTr("<i>No topic set</i>")
|
||||
else
|
||||
return isTopicEditingAllowed ? roomSettings.plainRoomTopic : roomSettings.roomTopic
|
||||
}
|
||||
wrapMode: TextEdit.WordWrap
|
||||
background: null
|
||||
selectByMouse: !Settings.mobileMode
|
||||
|
Loading…
Reference in New Issue
Block a user