diff options
author | Michele Calgaro <[email protected]> | 2023-12-07 22:51:13 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2023-12-13 22:32:06 +0900 |
commit | 9c73915ca781a8058647097085668fe299e32c95 (patch) | |
tree | aac81f41fbb5557def2d4a935c0d147a71bc6be1 /twin/geometry.cpp | |
parent | 80859919391de08031928d99151d4e19bf8e4a32 (diff) | |
download | tdebase-9c73915ca781a8058647097085668fe299e32c95.tar.gz tdebase-9c73915ca781a8058647097085668fe299e32c95.zip |
twin: use separate bit to inhibit configure request messages. This resolves issue #434.
Signed-off-by: Michele Calgaro <[email protected]>
(cherry picked from commit f5bdd235fc583f6674581df993165b9e7ae8774c)
Diffstat (limited to 'twin/geometry.cpp')
-rw-r--r-- | twin/geometry.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/twin/geometry.cpp b/twin/geometry.cpp index 65285cab6..f729c702c 100644 --- a/twin/geometry.cpp +++ b/twin/geometry.cpp @@ -1451,7 +1451,7 @@ const TQPoint Client::calculateGravitation( bool invert, int gravity ) const void Client::configureRequest( int value_mask, int rx, int ry, int rw, int rh, int gravity, bool from_tool ) { - moveResizeMode = true; + inhibitConfigureRequests = true; configureRequestTimer->start(100, true); if( gravity == 0 ) // default (nonsense) value for the argument gravity = xSizeHint.win_gravity; |