From d18f6e82eb95054108114843ef824bf36026c758 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?H=C3=BCseyin=20ASLIT=C3=9CRK?= Date: Sat, 16 May 2020 22:21:29 +0300 Subject: LibGUI: Replace up and down arrows with emoji --- Libraries/LibGUI/AbstractTableView.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'Libraries/LibGUI/AbstractTableView.cpp') diff --git a/Libraries/LibGUI/AbstractTableView.cpp b/Libraries/LibGUI/AbstractTableView.cpp index e480ba5983..b2d91bf51d 100644 --- a/Libraries/LibGUI/AbstractTableView.cpp +++ b/Libraries/LibGUI/AbstractTableView.cpp @@ -75,7 +75,7 @@ void AbstractTableView::update_column_sizes() continue; int header_width = header_font().width(model.column_name(column)); if (column == key_column) - header_width += font().width(" \xc3\xb6"); + header_width += font().width(" \xE2\xAC\x86"); // UPWARDS BLACK ARROW int column_width = header_width; for (int row = 0; row < row_count; ++row) { auto cell_data = model.data(model.index(row, column)); @@ -158,9 +158,9 @@ void AbstractTableView::paint_headers(Painter& painter) builder.append(model()->column_name(column_index)); auto sort_order = model()->sort_order(); if (sort_order == SortOrder::Ascending) - builder.append(" \xc3\xb6"); + builder.append(" \xE2\xAC\x86"); // UPWARDS BLACK ARROW else if (sort_order == SortOrder::Descending) - builder.append(" \xc3\xb7"); + builder.append(" \xE2\xAC\x87"); // DOWNWARDS BLACK ARROW text = builder.to_string(); } else { text = model()->column_name(column_index); -- cgit v1.2.3