Fix lock extension setup in compositor
This commit is contained in:
parent
253efad437
commit
eefc93db43
|
@ -162,5 +162,5 @@ void register_extensions(void) {
|
||||||
desktop_shell.panel_position = DESKTOP_SHELL_PANEL_POSITION_BOTTOM;
|
desktop_shell.panel_position = DESKTOP_SHELL_PANEL_POSITION_BOTTOM;
|
||||||
desktop_shell.lock_surfaces = create_list();
|
desktop_shell.lock_surfaces = create_list();
|
||||||
desktop_shell.is_locked = false;
|
desktop_shell.is_locked = false;
|
||||||
wl_global_create(wlc_get_wl_display(), &lock_interface, 3, NULL, swaylock_bind);
|
wl_global_create(wlc_get_wl_display(), &lock_interface, 1, NULL, swaylock_bind);
|
||||||
}
|
}
|
||||||
|
|
|
@ -97,9 +97,9 @@ int main(int argc, char **argv) {
|
||||||
surfaces = create_list();
|
surfaces = create_list();
|
||||||
registry = registry_poll();
|
registry = registry_poll();
|
||||||
|
|
||||||
/*if (!registry->swaylock) {
|
if (!registry->swaylock) {
|
||||||
sway_abort("swaylock requires the compositor to support the swaylock extension.");
|
sway_abort("swaylock requires the compositor to support the swaylock extension.");
|
||||||
}*/
|
}
|
||||||
|
|
||||||
int i;
|
int i;
|
||||||
for (i = 0; i < registry->outputs->length; ++i) {
|
for (i = 0; i < registry->outputs->length; ++i) {
|
||||||
|
@ -108,7 +108,7 @@ int main(int argc, char **argv) {
|
||||||
if (!window) {
|
if (!window) {
|
||||||
sway_abort("Failed to create surfaces.");
|
sway_abort("Failed to create surfaces.");
|
||||||
}
|
}
|
||||||
//lock_set_lock_surface(registry->swaylock, output->output, window->surface);
|
lock_set_lock_surface(registry->swaylock, output->output, window->surface);
|
||||||
list_add(surfaces, window);
|
list_add(surfaces, window);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue