fix a mistake with missuse of '!' instead of '~'

Signed-off-by: Alexander Golubev <fatzer2@gmail.com>
pull/4/head
Alexander Golubev 5 years ago committed by Slávek Banko
parent 913d32ae21
commit 5e226b3720
No known key found for this signature in database
GPG Key ID: 608F5293A04BE668

@ -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();

Loading…
Cancel
Save