From 953cf898bc4c2fa9bdc3cf01a2c91b3e8d94b3e1 Mon Sep 17 00:00:00 2001 From: rdb Date: Sun, 26 Dec 2021 14:13:32 +0100 Subject: [PATCH] x11: Fix doubled-up info print message --- panda/src/x11display/x11GraphicsPipe.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/panda/src/x11display/x11GraphicsPipe.cxx b/panda/src/x11display/x11GraphicsPipe.cxx index b181318861..6d42d399df 100644 --- a/panda/src/x11display/x11GraphicsPipe.cxx +++ b/panda/src/x11display/x11GraphicsPipe.cxx @@ -425,7 +425,7 @@ enable_raw_mouse() { XISetMask(mask, XI_RawMotion); if (_XISelectEvents(_display, _root, &event_mask, 1) == Success) { - if (x11display_cat.info()) { + if (x11display_cat.is_info()) { x11display_cat.info() << "Enabled raw mouse events using XInput2 extension\n"; }