Compare commits

...

3 Commits

2 changed files with 13 additions and 4 deletions

View File

@ -268,7 +268,7 @@ class HTMLProcessor:
return {
"tags": inline_tags if inline else all_tags,
"attributes": inlines_attributes if inline else attributes,
"empty": {} if inline else {"hr", "br", "img"},
"empty": set() if inline else {"hr", "br", "img"},
"separate": {"a"} if inline else {
"a", "p", "li", "table", "tr", "th", "td", "br", "hr", "img",
},

View File

@ -26,8 +26,17 @@ HPage {
HTabButton { text: qsTr("Create group") }
}
DirectChat { userId: page.userId }
JoinRoom { userId: page.userId }
CreateRoom { userId: page.userId }
DirectChat {
userId: page.userId
implicitWidth: 0
}
JoinRoom {
userId: page.userId
implicitWidth: 0
}
CreateRoom {
userId: page.userId
implicitWidth: 0
}
}
}