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

LibVT: New terminal cells should be filled with whitespace, not '\0'

This commit is contained in:
Andreas Kling 2021-03-01 11:05:31 +01:00
parent 147d30ae4f
commit 9af1e1a3bf

View file

@ -89,7 +89,7 @@ public:
~Line(); ~Line();
struct Cell { struct Cell {
u32 code_point {}; u32 code_point { ' ' };
Attribute attribute; Attribute attribute;
}; };