mirror of
https://github.com/hyprwm/Hypr.git
synced 2024-11-21 21:15:59 +01:00
fix(ewmh): workspace off-by-one (#116)
This commit is contained in:
parent
af4641847b
commit
855ef848fe
1 changed files with 1 additions and 1 deletions
|
@ -136,7 +136,7 @@ void EWMH::updateWindow(xcb_window_t win) {
|
|||
if (!PWINDOW || win < 1)
|
||||
return;
|
||||
|
||||
const auto WORKSPACE = PWINDOW->getWorkspaceID();
|
||||
const auto WORKSPACE = PWINDOW->getWorkspaceID() - 1; // because xorgs counts from 0, part 2
|
||||
xcb_change_property(g_pWindowManager->DisplayConnection, XCB_PROP_MODE_REPLACE, win, HYPRATOMS["_NET_WM_DESKTOP"], XCB_ATOM_CARDINAL, 32, 1, &WORKSPACE);
|
||||
|
||||
// ICCCM State Normal
|
||||
|
|
Loading…
Reference in a new issue