Skip to content

Commit 8017da7

Browse files
committed
✨ Apply clang-format
1 parent 72aad2d commit 8017da7

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

extension.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -182,14 +182,14 @@ export default class KandoIntegration extends Extension {
182182
let [x, y] = [0, 0];
183183

184184
if (this._lastPointerDevice != null) {
185-
if (utils.shellVersionIsAtLeast(50, "alpha")) {
185+
if (utils.shellVersionIsAtLeast(50, 'alpha')) {
186186
// The sprite device property changed the name in 50.alpha :
187187
// https://gitlab.gnome.org/GNOME/mutter/-/commit/8c0b25b911c0449ce8b3d58c810e4463c4f61916
188188
global.stage.foreach_sprite((stage, sprite) => {
189189
if (sprite.sprite_device == this._lastPointerDevice) {
190190
const coords = sprite.get_coords();
191-
[x, y] = [coords.x, coords.y];
192-
return false; // Stop iteration.
191+
[x, y] = [coords.x, coords.y];
192+
return false; // Stop iteration.
193193
}
194194
return true;
195195
});

0 commit comments

Comments
 (0)