diff --git a/src/text_editor/draw.cpp b/src/text_editor/draw.cpp index 4306934..40d378a 100644 --- a/src/text_editor/draw.cpp +++ b/src/text_editor/draw.cpp @@ -57,7 +57,7 @@ void DrawVisibleText(Window *window, Color tint) { p.x += text_offset_x; Rect2 rect = Rect2FromSize(p + g->offset, g->size); - if (codepoint != '\n' && codepoint != '\r' && codepoint != ' ') { + if (codepoint != '\n' && codepoint != '\r' && codepoint != ' ' && codepoint != '\t') { PushQuad2D(RenderArena, &Vertices, rect, g->atlas_bounding_box, tint); }