Compare commits
2 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
af7903dba7 | ||
|
|
f99b42e732 |
4
NEWS
4
NEWS
@@ -1,3 +1,7 @@
|
||||
3.22.1
|
||||
======
|
||||
* window-list: Update icon on app changes
|
||||
|
||||
3.22.0
|
||||
======
|
||||
* updated translations (en_GB)
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
AC_PREREQ(2.63)
|
||||
AC_INIT([gnome-shell-extensions],[3.22.0],[https://bugzilla.gnome.org/enter_bug.cgi?product=gnome-shell&component=extensions])
|
||||
AC_INIT([gnome-shell-extensions],[3.22.1],[https://bugzilla.gnome.org/enter_bug.cgi?product=gnome-shell&component=extensions])
|
||||
|
||||
AC_CONFIG_MACRO_DIR([m4])
|
||||
AC_CONFIG_AUX_DIR([config])
|
||||
|
||||
@@ -152,6 +152,12 @@ const WindowTitle = new Lang.Class({
|
||||
this._iconThemeChangedId =
|
||||
this._textureCache.connect('icon-theme-changed',
|
||||
Lang.bind(this, this._updateIcon));
|
||||
this._notifyWmClass =
|
||||
this._metaWindow.connect('notify::wm-class',
|
||||
Lang.bind(this, this._updateIcon));
|
||||
this._notifyAppId =
|
||||
this._metaWindow.connect('notify::gtk-application-id',
|
||||
Lang.bind(this, this._updateIcon));
|
||||
this._updateIcon();
|
||||
|
||||
this.actor.connect('destroy', Lang.bind(this, this._onDestroy));
|
||||
@@ -193,6 +199,8 @@ const WindowTitle = new Lang.Class({
|
||||
this._textureCache.disconnect(this._iconThemeChangedId);
|
||||
this._metaWindow.disconnect(this._notifyTitleId);
|
||||
this._metaWindow.disconnect(this._notifyMinimizedId);
|
||||
this._metaWindow.disconnect(this._notifyWmClass);
|
||||
this._metaWindow.disconnect(this._notifyAppId);
|
||||
}
|
||||
});
|
||||
|
||||
|
||||
Reference in New Issue
Block a user