[#963] Change XRandR display size check to also take height into account (#964)

This commit is contained in:
Abendstolz 2019-06-22 18:48:51 +02:00 committed by Victor Berger
parent f457c6a0b8
commit 2467a997f4

View file

@ -22,7 +22,7 @@ pub fn calc_dpi_factor(
}
// See http://xpra.org/trac/ticket/728 for more information.
if width_mm == 0 || width_mm == 0 {
if width_mm == 0 || height_mm == 0 {
warn!("XRandR reported that the display's 0mm in size, which is certifiably insane");
return 1.0;
}