[AppIcon] Sort minimized windows after normal ones in AppIcon menu

https://bugzilla.gnome.org/show_bug.cgi?id=596389
This commit is contained in:
Dan Winship 2009-09-26 10:59:21 -04:00
parent 7f468b36e7
commit d4a2f9e604

View File

@ -160,13 +160,15 @@ AppIcon.prototype = {
_resortWindows: function() {
this.windows.sort(function (a, b) {
let timeA = a.get_user_time();
let timeB = b.get_user_time();
if (timeA == timeB)
return 0;
else if (timeA > timeB)
let visA = a.showing_on_its_workspace();
let visB = b.showing_on_its_workspace();
if (visA && !visB)
return -1;
return 1;
else if (visB && !visA)
return 1;
else
return b.get_user_time() - a.get_user_time();
});
},