diff --git a/src/components/structures/RoomSubList.js b/src/components/structures/RoomSubList.js
index 63b340563..4d6a5dc80 100644
--- a/src/components/structures/RoomSubList.js
+++ b/src/components/structures/RoomSubList.js
@@ -418,8 +418,18 @@ var RoomSubList = React.createClass({
badge =
{subListNotifCount > 99 ? "99+" : subListNotifCount}
;
}
+ // When collapsed, allow a long hover on the header to show user
+ // the full tag name and room count
+ var title;
+ if (this.props.collapsed) {
+ title = this.props.label;
+ if (roomCount !== '') {
+ title += " [" + roomCount + "]";
+ }
+ }
+
return (
-
+
{ this.props.collapsed ? '' : this.props.label }
{roomCount}