I2P Address: [http://git.idk.i2p]

Skip to content
Snippets Groups Projects
Commit 158212a8 authored by aargh's avatar aargh
Browse files

add number of messages in channel list

parent 402dabf6
No related branches found
No related tags found
No related merge requests found
......@@ -28,7 +28,7 @@ func (client *GUI) renderChannelList() fyne.CanvasObject {
icon.SetMinSize(fyne.NewSize(32, 32))
rw := new(tappableLabel)
rw.SetText(channel.Name + " " + shortIdent(channel.IdentHash))
rw.SetText(channel.Name + " " + shortIdent(channel.IdentHash) + " (?/" + strconv.Itoa(len(client.db.chanList[channel.IdentHash])) + ")")
rw.chanID = channel.IdentHash
rw.selectedChannel = make(chan string)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment