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
Notes: sideshowbarker 2024-07-18 21:49:05 +09:00

View file

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