Compare commits

..

No commits in common. "f2de3d95841f807252b841b91d5123ff13345a31" and "d00a991b848a584dd4393e5c747a77d9578f3b44" have entirely different histories.

2 changed files with 4 additions and 13 deletions

View File

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

View File

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