diff options
author | Alexander Golubev <[email protected]> | 2019-03-01 00:43:38 +0300 |
---|---|---|
committer | Slávek Banko <[email protected]> | 2019-03-02 11:41:03 +0100 |
commit | 5e226b3720da3a342505ab1c7415c882f00f8b67 (patch) | |
tree | 60c2baef098c23c5bff33540c69f4b0754c874b0 | |
parent | 913d32ae210dd9daf180cf2c1c7cb4d6bb7cade1 (diff) | |
download | kooldock-5e226b3720da3a342505ab1c7415c882f00f8b67.tar.gz kooldock-5e226b3720da3a342505ab1c7415c882f00f8b67.zip |
fix a mistake with missuse of '!' instead of '~'
Signed-off-by: Alexander Golubev <[email protected]>
-rw-r--r-- | src/kooldock.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/kooldock.cpp b/src/kooldock.cpp index d6d853a..d951163 100644 --- a/src/kooldock.cpp +++ b/src/kooldock.cpp @@ -3314,7 +3314,7 @@ void KoolDock::init1() reparent(0, getWFlags() | WX11BypassWM, pos(), false); } else { - reparent(0, getWFlags() & !WX11BypassWM, pos(), false); + reparent(0, getWFlags() & ~WX11BypassWM, pos(), false); } hide(); |