From 5ca88bf9b42aa62d36ca163cfef809df9ad88692 Mon Sep 17 00:00:00 2001 From: Andreas Kling Date: Fri, 29 Nov 2019 21:07:24 +0100 Subject: [PATCH] DisplayProperties: Add 1280x720 to the list of resolutions --- Applications/DisplayProperties/DisplayProperties.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/Applications/DisplayProperties/DisplayProperties.cpp b/Applications/DisplayProperties/DisplayProperties.cpp index 62bdf61c48..6f3a348a5e 100644 --- a/Applications/DisplayProperties/DisplayProperties.cpp +++ b/Applications/DisplayProperties/DisplayProperties.cpp @@ -36,6 +36,7 @@ void DisplayPropertiesWidget::create_resolution_list() m_resolutions.append({ 640, 480 }); m_resolutions.append({ 800, 600 }); m_resolutions.append({ 1024, 768 }); + m_resolutions.append({ 1280, 720 }); m_resolutions.append({ 1280, 1024 }); m_resolutions.append({ 1440, 900 }); m_resolutions.append({ 1600, 900 });