1
0
mirror of https://codeberg.org/vyivel/dulcepan/ synced 2026-04-26 21:14:40 +03:00

output,seat: name => global_name

This commit is contained in:
Kirill Primak
2024-06-24 16:32:47 +03:00
parent 8a9a5689c4
commit 29c6ebf48c
4 changed files with 6 additions and 6 deletions

View File

@@ -320,7 +320,7 @@ void dp_output_hide_surface(struct dp_output *output) {
void dp_output_create(struct dp_state *state, uint32_t name, struct wl_output *wl_output) {
struct dp_output *output = dp_zalloc(sizeof(*output));
output->state = state;
output->name = name;
output->global_name = name;
output->wl_output = wl_output;
wl_output_add_listener(output->wl_output, &output_listener, output);