aboutsummaryrefslogtreecommitdiff
path: root/apps/wm.c
diff options
context:
space:
mode:
authorMarvin Borner2020-09-04 17:09:07 +0200
committerMarvin Borner2020-09-04 17:09:07 +0200
commit6938cb8093dc497160e24d8502cfc42a6adb1a6b (patch)
tree79418b037f1b2ef142a7af9e2a9421b337927f96 /apps/wm.c
parent538ac0e639ad190fe7dee0fb7029fb536761c471 (diff)
Mandelbrot performance and coloring
Diffstat (limited to 'apps/wm.c')
-rw-r--r--apps/wm.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/wm.c b/apps/wm.c
index 380884f..477eb7f 100644
--- a/apps/wm.c
+++ b/apps/wm.c
@@ -91,8 +91,8 @@ int main(int argc, char **argv)
switch (msg->type) {
case MSG_NEW_WINDOW:
printf("New window for pid %d\n", msg->src);
- struct window *win = new_window(vbe->width / 2 - 250, vbe->height / 2 - 150,
- 500, 300, (int)msg->data);
+ struct window *win = new_window(vbe->width / 2 - 500, vbe->height / 2 - 400,
+ 1000, 800, (int)msg->data);
msg_send(msg->src, MSG_NEW_WINDOW, win);
list_add(windows, win);
focused = win;