mirror of
https://github.com/hyprwm/wlroots-hyprland.git
synced 2024-11-04 20:55:58 +01:00
examples/simple: use wlr_output_preferred_mode
This commit is contained in:
parent
c236f60bb6
commit
801c7670b7
1 changed files with 3 additions and 3 deletions
|
@ -80,9 +80,9 @@ static void new_output_notify(struct wl_listener *listener, void *data) {
|
|||
wl_container_of(listener, sample, new_output);
|
||||
struct sample_output *sample_output =
|
||||
calloc(1, sizeof(struct sample_output));
|
||||
if (!wl_list_empty(&output->modes)) {
|
||||
struct wlr_output_mode *mode =
|
||||
wl_container_of(output->modes.prev, mode, link);
|
||||
|
||||
struct wlr_output_mode *mode = wlr_output_preferred_mode(output);
|
||||
if (mode != NULL) {
|
||||
wlr_output_set_mode(output, mode);
|
||||
}
|
||||
sample_output->output = output;
|
||||
|
|
Loading…
Reference in a new issue