mirror of
https://github.com/davatorium/rofi.git
synced 2024-11-03 04:23:42 -05:00
Don't create collate, use normalized form to match.
This commit is contained in:
parent
aeaa37ae8a
commit
611c2c4302
1 changed files with 1 additions and 1 deletions
|
@ -142,7 +142,7 @@ char *token_collate_key ( const char *token, int case_sensitive )
|
|||
tmp = g_utf8_casefold ( token, -1 );
|
||||
}
|
||||
|
||||
compk = g_utf8_collate_key ( tmp, -1 );
|
||||
compk = g_utf8_normalize ( tmp, -1, G_NORMALIZE_ALL );
|
||||
g_free ( tmp );
|
||||
|
||||
return compk;
|
||||
|
|
Loading…
Reference in a new issue