summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDariusz Gadomski <dgadomski@gmail.com>2018-09-24 09:50:27 +0200
committerDariusz Gadomski <dgadomski@gmail.com>2019-02-04 17:41:36 +0100
commit325fec31da120c9afd4402190d940e135867b626 (patch)
treeb84981388bfe435df49918a52b4ffd0a6f679bed
parentcbb2a286f2a7b55a486c4d14be22cf78b94127d0 (diff)
downloadmutter-325fec31da120c9afd4402190d940e135867b626.tar.gz
monitor-manager: Add yet another wacky "physical dimension"
-rw-r--r--src/backends/meta-monitor-manager.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/backends/meta-monitor-manager.c b/src/backends/meta-monitor-manager.c
index 02cb1619f..318bdd36b 100644
--- a/src/backends/meta-monitor-manager.c
+++ b/src/backends/meta-monitor-manager.c
@@ -929,7 +929,9 @@ meta_monitor_has_aspect_as_size (MetaMonitor *monitor)
meta_monitor_get_physical_dimensions (monitor, &width_mm, &height_mm);
- return (width_mm == 160 && height_mm == 90) ||
+ return (width_mm == 1600 && height_mm == 900) ||
+ (width_mm == 1600 && height_mm == 1000) ||
+ (width_mm == 160 && height_mm == 90) ||
(width_mm == 160 && height_mm == 100) ||
(width_mm == 16 && height_mm == 9) ||
(width_mm == 16 && height_mm == 10);