From 7c85b54ba4939480418bf133d123f13a1dbe3a71 Mon Sep 17 00:00:00 2001 From: rdb Date: Sat, 3 Dec 2022 22:28:02 +0100 Subject: [PATCH] pstats: Use proper microsecond symbol on GTK --- pandatool/src/pstatserver/pStatGraph.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pandatool/src/pstatserver/pStatGraph.cxx b/pandatool/src/pstatserver/pStatGraph.cxx index 003ca2effb..a0d1a5dad5 100644 --- a/pandatool/src/pstatserver/pStatGraph.cxx +++ b/pandatool/src/pstatserver/pStatGraph.cxx @@ -206,7 +206,7 @@ format_number(double value, int guide_bar_units, const string &unit_name) { #ifdef _WIN32 label += " \xb5s"; #else - label += " us"; + label += " \xc2\xb5s"; #endif } else if ((guide_bar_units & GBU_show_units) == 0 || value < 1.0) {