appDisplay: Make refiltering folders more efficient
Rather than queueing a full redisplay, simply filter the apps inside folders by toggling the icon's visibility. https://bugzilla.gnome.org/show_bug.cgi?id=723179
This commit is contained in:
@ -433,6 +433,10 @@ const IconGrid = new Lang.Class({
|
||||
this._grid.add_actor(item.actor);
|
||||
},
|
||||
|
||||
removeItem: function(item) {
|
||||
this._grid.remove_child(item.actor);
|
||||
},
|
||||
|
||||
getItemAtIndex: function(index) {
|
||||
return this._grid.get_child_at_index(index);
|
||||
},
|
||||
|
Reference in New Issue
Block a user