Added tooltip for each channel item in the ChannelList window

This commit is contained in:
Tristan B. Kildaire 2020-10-23 17:10:44 +02:00
parent 3b22f095bb
commit f57758777e
1 changed files with 4 additions and 0 deletions

View File

@ -58,6 +58,8 @@ public class GUI : Thread
private void worker()
{
initializeGUI();
te();
tl();
@ -388,6 +390,8 @@ public class GUI : Thread
containerMain.setTooltipMarkup("<b>"~channelName~"</b>\n"~to!(string)(memberCount)~" members");
return containerMain;
}