mirror of
https://github.com/hyprwm/wlroots-hyprland.git
synced 2024-11-26 14:45:58 +01:00
Merge pull request #1385 from atomnuker/master
Fix interlaced mode rejection
This commit is contained in:
commit
c70b8f64b7
1 changed files with 1 additions and 1 deletions
|
@ -1134,7 +1134,7 @@ void scan_drm_connectors(struct wlr_drm_backend *drm) {
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (mode->drm_mode.flags & DRM_MODE_FLAG_INTERLACE) {
|
if (drm_conn->modes[i].flags & DRM_MODE_FLAG_INTERLACE) {
|
||||||
free(mode);
|
free(mode);
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue