WindowSelector: fix finding unmanaged windows
This typo was preventing the method from actually finding the requested window if turned to be unmanaged
This commit is contained in:
parent
e0c965d316
commit
3d828d891c
1 changed files with 1 additions and 1 deletions
|
@ -246,7 +246,7 @@ void WindowSelector::selectWindowId(xcb_window_t window_to_select)
|
|||
if (client) {
|
||||
m_callback(client);
|
||||
} else {
|
||||
m_callback(Workspace::self()->findUnmanaged(window));
|
||||
m_callback(Workspace::self()->findUnmanaged(window_to_select));
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue