Skip to content

Commit ec1a926

Browse files
authored
Merge pull request #251 from matttbe/gnome-shell-v44-support
GNOME: add support for version 44
2 parents 06b5f3b + c244010 commit ec1a926

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

[email protected]/metadata.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
{
22
"shell-version": [
3-
"42",
4-
"43"
3+
"44"
54
],
65
"uuid": "[email protected]",
76
"url": "https://github.com/mzur/gnome-shell-wsmatrix",

[email protected]/overview/thumbnailsBox.js

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -184,7 +184,8 @@ var ThumbnailsBox = class {
184184
this._dropPlaceholder.allocate_preferred_size(
185185
...this._dropPlaceholder.get_position());
186186

187-
Meta.later_add(Meta.LaterType.BEFORE_REDRAW, () => {
187+
const laters = global.compositor.get_laters();
188+
laters.add(Meta.LaterType.BEFORE_REDRAW, () => {
188189
this._dropPlaceholder.hide();
189190
});
190191
}
@@ -219,7 +220,8 @@ var ThumbnailsBox = class {
219220

220221
this._dropPlaceholder.allocate(childBox);
221222

222-
Meta.later_add(Meta.LaterType.BEFORE_REDRAW, () => {
223+
const laters = global.compositor.get_laters();
224+
laters.add(Meta.LaterType.BEFORE_REDRAW, () => {
223225
this._dropPlaceholder.show();
224226
});
225227
x += placeholderWidth + spacing;

0 commit comments

Comments
 (0)