Compare commits
3 Commits
d00a991b84
...
f2de3d9584
Author | SHA1 | Date | |
---|---|---|---|
f2de3d9584 | |||
a9eecd1c05 | |||
|
bd1bc59859 |
|
@ -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": {} if inline else {"hr", "br", "img"},
|
"empty": set() 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",
|
||||||
},
|
},
|
||||||
|
|
|
@ -26,8 +26,17 @@ HPage {
|
||||||
HTabButton { text: qsTr("Create group") }
|
HTabButton { text: qsTr("Create group") }
|
||||||
}
|
}
|
||||||
|
|
||||||
DirectChat { userId: page.userId }
|
DirectChat {
|
||||||
JoinRoom { userId: page.userId }
|
userId: page.userId
|
||||||
CreateRoom { userId: page.userId }
|
implicitWidth: 0
|
||||||
|
}
|
||||||
|
JoinRoom {
|
||||||
|
userId: page.userId
|
||||||
|
implicitWidth: 0
|
||||||
|
}
|
||||||
|
CreateRoom {
|
||||||
|
userId: page.userId
|
||||||
|
implicitWidth: 0
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue
Block a user