Indicate UTF8 literals - fixes glyph rendering with MSVC (2/2)

This commit is contained in:
Robin Gareus 2023-01-16 21:41:22 +01:00
parent 2c7f8eeb97
commit c44b40afd7
No known key found for this signature in database
GPG key ID: A090BCE02CF57F04
17 changed files with 52 additions and 53 deletions

View file

@ -366,7 +366,7 @@ SoundFileBox::setup_labels (const string& filename)
case 1: {
Evoral::SMF::Tempo* t = smf.nth_tempo (0);
assert (t);
tempomap_value.set_text (string_compose (_("%1/%2 \u2669 = %3"),
tempomap_value.set_text (string_compose (_(u8"%1/%2 \u2669 = %3"),
t->numerator,
t->denominator,
t->tempo ()));