diff options
Diffstat (limited to 'global-functions')
-rw-r--r-- | global-functions | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/global-functions b/global-functions index f8716fe..f4b3ca6 100644 --- a/global-functions +++ b/global-functions @@ -874,7 +874,11 @@ :if ($NotificationsWithSymbols != true) do={ :return ""; } - :return ([ $SymbolByUnicodeName $1 ] . " "); + :local Return ""; + :foreach Symbol in=[ :toarray $1 ] do={ + :set Return ($Return . [ $SymbolByUnicodeName $Symbol ]); + } + :return ($Return . " "); } # check if system time is sync |