소스 검색

Put unread count in window title as first element (#286)

Fixes #285
IndianaDschones 8 년 전
부모
커밋
745238c7de
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      src/services/title.ts

+ 1 - 1
src/services/title.ts

@@ -41,7 +41,7 @@ export class TitleService {
 
     private update(): void {
         if (this.unreadCount > 0) {
-            this.title = `${this.DEFAULT_TITLE} (${this.unreadCount})`;
+            this.title = `(${this.unreadCount}) ${this.DEFAULT_TITLE}`;
         } else {
             this.title = this.DEFAULT_TITLE;
         }