1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 16:17:45 +00:00

Spreadsheet: Allow cells to optionally have static fg/bg colors

This commit is contained in:
AnotherTest 2020-09-12 15:29:58 +04:30 committed by Andreas Kling
parent 1674903dcc
commit 8fa385f774
3 changed files with 19 additions and 0 deletions

View file

@ -60,6 +60,8 @@ private:
String m_format;
HorizontalAlignment m_horizontal_alignment { HorizontalAlignment::Right };
VerticalAlignment m_vertical_alignment { VerticalAlignment::Center };
Optional<Color> m_static_foreground_color;
Optional<Color> m_static_background_color;
};
}