diff options
author | Michele Calgaro <[email protected]> | 2023-12-07 22:51:13 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2023-12-13 22:30:18 +0900 |
commit | f5bdd235fc583f6674581df993165b9e7ae8774c (patch) | |
tree | 99ee83f98e820f07e262030f0fc4b01b574655ee /twin/client.cpp | |
parent | 607f0804ce4ade6f62539565b3542f1b8dba0c89 (diff) | |
download | tdebase-f5bdd235fc583f6674581df993165b9e7ae8774c.tar.gz tdebase-f5bdd235fc583f6674581df993165b9e7ae8774c.zip |
twin: use separate bit to inhibit configure request messages. This resolves issue #434.
Signed-off-by: Michele Calgaro <[email protected]>
Diffstat (limited to 'twin/client.cpp')
-rw-r--r-- | twin/client.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/twin/client.cpp b/twin/client.cpp index d76dda619..75aa896d4 100644 --- a/twin/client.cpp +++ b/twin/client.cpp @@ -99,6 +99,7 @@ Client::Client( Workspace *ws ) decoration( NULL ), wspace( ws ), bridge( new Bridge( this )), + inhibitConfigureRequests(false), move_faked_activity( false ), move_resize_grab_window( None ), transient_for( NULL ), @@ -974,7 +975,7 @@ void Client::setShade( ShadeMode mode ) void Client::configureRequestTimeout() { - moveResizeMode = false; + inhibitConfigureRequests = false; sendSyntheticConfigureNotify(); } |