fix negation logic error ...
This commit is contained in:
parent
e789daf1bc
commit
67f484e825
1 changed files with 1 additions and 1 deletions
|
@ -1130,7 +1130,7 @@ void Workspace::slotSwitchToDesktop()
|
||||||
setCurrentDesktop(i);
|
setCurrentDesktop(i);
|
||||||
}
|
}
|
||||||
|
|
||||||
#define USABLE_ACTIVE_CLIENT (!active_client || (active_client->isDesktop() || active_client->isDock()))
|
#define USABLE_ACTIVE_CLIENT (active_client && !(active_client->isDesktop() || active_client->isDock()))
|
||||||
|
|
||||||
void Workspace::slotWindowToDesktop()
|
void Workspace::slotWindowToDesktop()
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue