We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3d9ef36 commit b6e5647Copy full SHA for b6e5647
1 file changed
src/Shader.js
@@ -132,12 +132,12 @@ export var Shader = GObject.registerClass({
132
133
// This is not necessarily symmetric, but I haven't figured out a way to
134
// get the actual values...
135
- const padding = (actor.width - actor.meta_window.get_frame_rect().width) / 2;
+ const padding = (actor.width - actor.meta_window.get_frame_rect().width) / 2;
136
let isFullscreen = actor.meta_window.fullscreen;
137
138
// is_maximized has been added in GNOME 49.
139
- if ( actor.meta_window.is_maximized) {
140
- isFullscreen |= actor.meta_window.is_maximized();
+ if (actor.meta_window.is_maximized) {
+ isFullscreen |= actor.meta_window.is_maximized();
141
} else {
142
isFullscreen |= actor.meta_window.get_maximized() === Meta.MaximizeFlags.BOTH;
143
}
0 commit comments