mowc

Unnamed repository; edit this file 'description' to name the repository.
git clone git://git.nihaljere.xyz/mowc
Log | Files | Refs

commit c5e6c238f6b1280d1cb545f14efe8b615deedfae
parent b8396e4c9f02150caa04d3762ac58bed0416b737
Author: Nihal Jere <nihal@nihaljere.xyz>
Date:   Sun, 27 Jun 2021 14:53:41 -0500

call: fix app id

Diffstat:
Mclients/call.c | 5+----
1 file changed, 1 insertion(+), 4 deletions(-)

diff --git a/clients/call.c b/clients/call.c @@ -183,9 +183,6 @@ touchdown(void *data, struct wl_touch *wl_touch, uint32_t serial, uint32_t time, draw(); } -int switchinput() { -} - void touchup(void *data, struct wl_touch *wl_touch, uint32_t serial, uint32_t time, int32_t id) { @@ -303,7 +300,7 @@ wlinit(void) xdg_surface_add_listener(wl.xdgsurface, &xdgsurflistener, NULL); wl.toplevel = xdg_surface_get_toplevel(wl.xdgsurface); xdg_toplevel_add_listener(wl.toplevel, &toplevellistener, NULL); - xdg_toplevel_set_app_id(wl.toplevel, "answer"); + xdg_toplevel_set_app_id(wl.toplevel, "call"); wl_display_roundtrip(wl.dpy);