Compare commits

..

3 Commits

Author SHA1 Message Date
f2de3d9584 Forgot to actually commit that fix 2024-02-14 16:55:31 +11:00
a9eecd1c05 Merge branch 'main' of https://gitlab.com/mx-moment/moment 2024-02-14 16:49:07 +11:00
gridtime
bd1bc59859 fixes content overlay in add chat tabs 2024-01-26 15:29:26 +01:00
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
}
}
}