commit 98633bd

wf  ·  2026-04-15 15:07:09 +0000 UTC
parent 56e1b89
Remove excessive spacing
1 files changed,  +12, -11
+12, -11
 1@@ -24,12 +24,12 @@ struct client {
 2 	struct swc_window *win;
 3 	struct screen     *scr;
 4 
 5-	bool              visible;
 6-	bool              fullscreen;
 7+	bool visible;
 8+	bool fullscreen;
 9 
10-	int32_t           x, y;
11-	uint32_t          width, height;
12-	uint8_t           ws;
13+	int32_t  x, y;
14+	uint32_t width, height;
15+	uint8_t  ws;
16 };
17 
18 struct grab {
19@@ -54,13 +54,14 @@ struct wm {
20 	struct wl_display    *dpy;
21 	struct wl_event_loop *loop;
22 
23-	struct wl_list       clients;
24-	struct wl_list       screens;
25+	struct wl_list clients;
26+	struct wl_list screens;
27 
28-	struct screen        *scr;
29-	struct client        *cur;
30-	struct grab          grab;
31-	uint8_t              ws;
32+	struct screen *scr;
33+	struct client *cur;
34+	struct grab   grab;
35+	uint8_t       ws;
36+	uint32_t      last_id;
37 };
38 
39 #endif /* TYPES_H */