Skip to content

Commit

Permalink
LibVT: New terminal cells should be filled with whitespace, not '\0'
Browse files Browse the repository at this point in the history
  • Loading branch information
awesomekling committed Mar 1, 2021
1 parent 147d30a commit 9af1e1a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Userland/Libraries/LibVT/Line.h
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ class Line {
~Line();

struct Cell {
u32 code_point {};
u32 code_point { ' ' };
Attribute attribute;
};

Expand Down

0 comments on commit 9af1e1a

Please sign in to comment.