diff --git a/Libraries/LibGUI/GTableView.cpp b/Libraries/LibGUI/GTableView.cpp index 5fe0ac8ea9..4bc27049c8 100644 --- a/Libraries/LibGUI/GTableView.cpp +++ b/Libraries/LibGUI/GTableView.cpp @@ -263,7 +263,7 @@ void GTableView::paint_event(GPaintEvent& event) text_color = Color::White; else text_color = model()->data(cell_index, GModel::Role::ForegroundColor).to_color(Color::Black); - painter.draw_text(cell_rect, data.to_string(), font, column_metadata.text_alignment, text_color); + painter.draw_text(cell_rect, data.to_string(), font, column_metadata.text_alignment, text_color, TextElision::Right); } x_offset += column_width + horizontal_padding() * 2; }