add more support for other message types

This commit is contained in:
2026-02-03 10:07:33 +00:00
parent 971147dcb8
commit c260b8b231
4 changed files with 38 additions and 3 deletions

View File

@@ -196,8 +196,11 @@ func switchToTab(jid string, w *gtk.Window) {
win.Present()
})
userbox.AddController(gesture)
gen.Append(userbox)
if mu.MucUserItem.Role == "moderator" {
gen.Prepend(userbox)
} else {
gen.Append(userbox)
}
return true
})