mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 19:38:12 +00:00
WindowServer+DisplaySettings: Capitalize display mode dropdown
Every other dropdown in settings is capitalized apart from this one. This commit fixes that.
This commit is contained in:
parent
b0eabae52e
commit
352d6545a9
4 changed files with 11 additions and 11 deletions
|
@ -34,9 +34,9 @@ namespace DisplaySettings {
|
|||
BackgroundSettingsWidget::BackgroundSettingsWidget(bool& background_settings_changed)
|
||||
: m_background_settings_changed { background_settings_changed }
|
||||
{
|
||||
m_modes.append("tile");
|
||||
m_modes.append("center");
|
||||
m_modes.append("stretch");
|
||||
m_modes.append("Tile");
|
||||
m_modes.append("Center");
|
||||
m_modes.append("Stretch");
|
||||
|
||||
create_frame();
|
||||
load_current_settings();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue