Release threads removing the feature flag.

This mr performs some final cleanup to make sure the threads are sized correctly and it all works with the new chatbar
This commit is contained in:
James Graham
2026-02-15 15:26:49 +00:00
committed by Joshua Goins
parent 85b731e9fb
commit 7e6b79d5d4
18 changed files with 60 additions and 93 deletions

View File

@@ -29,10 +29,16 @@ BaseMessageComponentChooser {
DelegateChoice {
roleValue: MessageComponentType.ChatBar
delegate: ChatBarCore {
/**
* @brief The ChatBarCache to use.
*/
required property ChatBarCache chatBarCache
Layout.fillWidth: true
Layout.maximumWidth: Message.maxContentWidth
room: Message.room
chatBarType: LibNeoChat.ChatBarType.Edit
chatBarType: chatBarCache.isEditing ? LibNeoChat.ChatBarType.Edit : LibNeoChat.ChatBarType.Thread
maxAvailableWidth: Message.maxContentWidth
}
}