Skip to content

Commit e21498d

Browse files
committed
Fix lint
1 parent 0ea8dea commit e21498d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Background/SystemBackground.vala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ public class Gala.SystemBackground : GLib.Object {
2121
}
2222

2323
public void set_black_background (bool black) {
24-
var color = black ? Clutter.Color ().init( 0, 0, 0, 0xff) : Clutter.Color ().init (0x2e, 0x34, 0x36, 0xff);
24+
var color = black ? Clutter.Color ().init ( 0, 0, 0, 0xff) : Clutter.Color ().init (0x2e, 0x34, 0x36, 0xff);
2525
system_background.set_color (color);
2626
}
2727
}

0 commit comments

Comments
 (0)