diff options
author | Andreas Kling <awesomekling@gmail.com> | 2019-11-29 21:07:24 +0100 |
---|---|---|
committer | Andreas Kling <awesomekling@gmail.com> | 2019-11-29 21:07:24 +0100 |
commit | 5ca88bf9b42aa62d36ca163cfef809df9ad88692 (patch) | |
tree | f6cded8f270daea7faa7e296a1cd8b8afad9d7dd /Applications/DisplayProperties | |
parent | f99e554c5e86df96e0a96b5647b9fbabdf5acf7e (diff) | |
download | serenity-5ca88bf9b42aa62d36ca163cfef809df9ad88692.zip |
DisplayProperties: Add 1280x720 to the list of resolutions
Diffstat (limited to 'Applications/DisplayProperties')
-rw-r--r-- | Applications/DisplayProperties/DisplayProperties.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
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 }); |