From f5bdd235fc583f6674581df993165b9e7ae8774c Mon Sep 17 00:00:00 2001 From: Michele Calgaro Date: Thu, 7 Dec 2023 22:51:13 +0900 Subject: twin: use separate bit to inhibit configure request messages. This resolves issue #434. Signed-off-by: Michele Calgaro --- twin/events.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'twin/events.cpp') diff --git a/twin/events.cpp b/twin/events.cpp index 10c06f93d..166767239 100644 --- a/twin/events.cpp +++ b/twin/events.cpp @@ -785,7 +785,7 @@ void Client::configureRequestEvent( XConfigureRequestEvent* e ) { if( e->window != window()) return; // ignore frame/wrapper - if ( isResize() || isMove()) + if ( isResize() || isMove() || inhibitConfigureRequests) { // Send a synthetic configure notification to make sure the // window contents get updated by the application -- cgit v1.2.1