Browse Source

pstats: Use proper microsecond symbol on GTK

rdb 3 years ago
parent
commit
7c85b54ba4
1 changed files with 1 additions and 1 deletions
  1. 1 1
      pandatool/src/pstatserver/pStatGraph.cxx

+ 1 - 1
pandatool/src/pstatserver/pStatGraph.cxx

@@ -206,7 +206,7 @@ format_number(double value, int guide_bar_units, const string &unit_name) {
 #ifdef _WIN32
 #ifdef _WIN32
         label += " \xb5s";
         label += " \xb5s";
 #else
 #else
-        label += " us";
+        label += " \xc2\xb5s";
 #endif
 #endif
       }
       }
       else if ((guide_bar_units & GBU_show_units) == 0 || value < 1.0) {
       else if ((guide_bar_units & GBU_show_units) == 0 || value < 1.0) {