add throughput, format code, and begin to add MUC preview window

This commit is contained in:
2026-04-18 10:29:07 +01:00
parent 7416aa37e0
commit 843687ff2b
20 changed files with 165 additions and 94 deletions
+2 -2
View File
@@ -55,8 +55,8 @@ func switchToTab(jid string, w *gtk.Window) {
}
typed_tab := tab.(*chatTab)
scroller.SetChild(typed_tab.msgs)
typingStatus.SetText("")
if typed_tab.isMuc {
m, ok := mucmembers.Load(jid)
@@ -490,7 +490,7 @@ func showErrorDialog(err error) {
func createIdenticon(word string) *gtk.Image { // This function generates an identicon
if !loadedConfig.Identicons {
i := gtk.NewImageFromPaintable(clientAssets["DefaultAvatar"])
i.AddCSSClass(loadedConfig.CVD.String()+"_CVD")
i.AddCSSClass(loadedConfig.CVD.String() + "_CVD")
return i
}