1
0
Fork 0

Updating 47/vertical-workspaces to version 47.5+20250210 [b14ba3cf].

Signed-off-by: Daniel Baumann <daniel@debian.org>
This commit is contained in:
Daniel Baumann 2025-03-24 19:45:01 +01:00
parent 297ae772ab
commit 6b0458069f
Signed by: daniel
GPG key ID: FBB4F0E80A80222F
26 changed files with 5479 additions and 3202 deletions

View file

@ -211,7 +211,13 @@ const AppSearchProvider = {
},
_filterAppGrid(results) {
const icons = Main.overview._overview.controls._appDisplay._orderedItems;
const appDisplay = Main.overview._overview.controls._appDisplay;
let icons = appDisplay._orderedItems;
icons.forEach(icon => {
icon.visible = true;
});
appDisplay._redisplay(results);
icons = appDisplay._orderedItems;
icons.forEach(icon => {
icon.visible = results.includes(icon.id);
});
@ -245,8 +251,6 @@ const SystemActionIcon = GObject.registerClass({
}, class SystemActionIcon extends Search.GridSearchResult {
_init(provider, metaInfo, resultsView) {
super._init(provider, metaInfo, resultsView);
if (!Clutter.Container)
this.add_style_class_name('grid-search-result-46');
this.icon._setSizeManually = true;
this.icon.setIconSize(provider._iconSize);
}