mirror of
https://github.com/swaywm/sway.git
synced 2025-11-17 06:59:48 -05:00
Fix compilation errors related to disabled outputs
This commit is contained in:
parent
0b798ed954
commit
88cd7616db
2 changed files with 17 additions and 13 deletions
|
|
@ -1169,12 +1169,10 @@ static void handle_destroy(struct wl_listener *listener, void *data) {
|
|||
container_destroy(output->swayc);
|
||||
}
|
||||
|
||||
if (&output->link) {
|
||||
wl_list_remove(&output->link);
|
||||
wl_list_remove(&output->destroy.link);
|
||||
output->wlr_output = NULL;
|
||||
free(output);
|
||||
}
|
||||
wl_list_remove(&output->link);
|
||||
wl_list_remove(&output->destroy.link);
|
||||
output->wlr_output->data = NULL;
|
||||
free(output);
|
||||
}
|
||||
|
||||
static void handle_mode(struct wl_listener *listener, void *data) {
|
||||
|
|
@ -1212,10 +1210,13 @@ void handle_new_output(struct wl_listener *listener, void *data) {
|
|||
output->wlr_output = wlr_output;
|
||||
wlr_output->data = output;
|
||||
output->server = server;
|
||||
wl_list_insert(&root_container.sway_root->outputs, &output->link);
|
||||
|
||||
output->damage = wlr_output_damage_create(wlr_output);
|
||||
|
||||
wl_signal_add(&wlr_output->events.destroy, &output->destroy);
|
||||
output->destroy.notify = handle_destroy;
|
||||
|
||||
wl_list_insert(&root_container.sway_root->outputs, &output->link);
|
||||
|
||||
if (!wl_list_empty(&wlr_output->modes)) {
|
||||
struct wlr_output_mode *mode =
|
||||
wl_container_of(wlr_output->modes.prev, mode, link);
|
||||
|
|
@ -1228,6 +1229,10 @@ void handle_new_output(struct wl_listener *listener, void *data) {
|
|||
void output_enable(struct sway_output *output) {
|
||||
struct wlr_output *wlr_output = output->wlr_output;
|
||||
|
||||
if (!sway_assert(output->swayc == NULL, "output is already enabled")) {
|
||||
return;
|
||||
}
|
||||
|
||||
output->swayc = output_create(output);
|
||||
if (!output->swayc) {
|
||||
// Output is disabled
|
||||
|
|
@ -1241,8 +1246,6 @@ void output_enable(struct sway_output *output) {
|
|||
|
||||
input_manager_configure_xcursor(input_manager);
|
||||
|
||||
wl_signal_add(&wlr_output->events.destroy, &output->destroy);
|
||||
output->destroy.notify = handle_destroy;
|
||||
wl_signal_add(&wlr_output->events.mode, &output->mode);
|
||||
output->mode.notify = handle_mode;
|
||||
wl_signal_add(&wlr_output->events.transform, &output->transform);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue