Skip to content

Commit

Permalink
[client] wayland: fix failure to select libdecor
Browse files Browse the repository at this point in the history
Fixes #1116 - Thanks @blu3bird
  • Loading branch information
gnif committed Mar 26, 2024
1 parent a626a11 commit 23b773a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion client/displayservers/Wayland/wayland.c
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ static bool waylandInit(const LG_DSInitParams params)
for(int i = 0; i < WL_DESKTOP_COUNT; ++i)
if (strcmp(WL_Desktops[i]->compositor, compositor) == 0)
{
wlWm.desktop = WL_Desktops[0];
wlWm.desktop = WL_Desktops[i];
break;
}
}
Expand Down

0 comments on commit 23b773a

Please sign in to comment.