Browse Source

Switch count + name in window status.

pull/74/head
Greg Holmes 9 years ago
parent
commit
7ca1dbeebc

+ 1
- 1
windowstatus/src/com/dmdirc/addons/windowstatus/WindowStatusManager.java View File

@@ -194,7 +194,7 @@ public class WindowStatusManager implements ConfigChangeListener {
194 194
                 }
195 195
                 final String name = i > 0 ?
196 196
                         Character.toString(channelUserModes.charAt(i)) : nonePrefix;
197
-                textString.append(count).append(name);
197
+                textString.append(name).append(count);
198 198
                 isFirst = false;
199 199
             }
200 200
         }

Loading…
Cancel
Save