From 495ee90d4f5798f2751f8191daf0a316772ce8c0 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Sat, 21 Oct 2023 18:33:56 -0400 Subject: Fix whitespace --- src/x11.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src') diff --git a/src/x11.c b/src/x11.c index 2de7d1c..d9a8773 100644 --- a/src/x11.c +++ b/src/x11.c @@ -881,7 +881,8 @@ translateKey(PuglView* const view, XEvent* const xevent, PuglEvent* const event) event->key.keycode = xevent->xkey.keycode; // Mask off the control and shift bits to get the lowercase "main" symbol - xevent->xkey.state = xevent->xkey.state & ~(unsigned)(ControlMask|ShiftMask); + xevent->xkey.state = + xevent->xkey.state & ~(unsigned)(ControlMask | ShiftMask); // Lookup unshifted key char ustr[8] = PUGL_INIT_STRUCT; -- cgit v1.2.1