1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 02:37:36 +00:00

DisplaySettings: Show DPI for selected resolution

This uses the EDID provided by the connected display to show the pixel
density of a selected resolution.
This commit is contained in:
Tom 2022-01-17 09:26:37 -07:00 committed by Linus Groh
parent 49c902d581
commit ab1075e296
4 changed files with 51 additions and 10 deletions

View file

@ -39,7 +39,7 @@ private:
void create_frame();
void create_resolution_list();
void load_current_settings();
void selected_screen_index_changed();
void selected_screen_index_or_resolution_changed();
size_t m_selected_screen_index { 0 };
@ -52,6 +52,7 @@ private:
RefPtr<GUI::ComboBox> m_resolution_combo;
RefPtr<GUI::RadioButton> m_display_scale_radio_1x;
RefPtr<GUI::RadioButton> m_display_scale_radio_2x;
RefPtr<GUI::Label> m_dpi_label;
bool m_showing_screen_numbers { false };
};