Skip to content

Commit 1d7c5e3

Browse files
sergio-costas3v1n0
authored andcommitted
Fix eslint
1 parent 31386f5 commit 1d7c5e3

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

util.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -377,16 +377,16 @@ export function tryCleanupOldIndicators() {
377377

378378
export function addActor(obj, actor) {
379379
if (obj.add_actor)
380-
obj.add_actor(actor)
380+
obj.add_actor(actor);
381381
else
382-
obj.add_child(actor)
382+
obj.add_child(actor);
383383
}
384384

385385
export function removeActor(obj, actor) {
386386
if (obj.remove_actor)
387-
obj.remove_actor(actor)
387+
obj.remove_actor(actor);
388388
else
389-
obj.remove_child(actor)
389+
obj.remove_child(actor);
390390
}
391391

392392
export const CancellableChild = GObject.registerClass({

0 commit comments

Comments
 (0)