diff options
| author | Markus Mittendrein <git@maxmitti.tk> | 2019-07-29 22:00:56 +0200 |
|---|---|---|
| committer | Markus Mittendrein <git@maxmitti.tk> | 2019-07-29 22:00:56 +0200 |
| commit | 9868c494c74fd35adfec8dd2a9720329e082cc44 (patch) | |
| tree | 823130ebb1fe79251bbf21a8ab59a2b8e02eeeda | |
| parent | 90fe4f8854a21d4f834ed59ac8a55dcec92e9fc7 (diff) | |
| download | DTMenuDebug.c4d-9868c494c74fd35adfec8dd2a9720329e082cc44.tar.gz DTMenuDebug.c4d-9868c494c74fd35adfec8dd2a9720329e082cc44.zip | |
Use operators .. and ..= instead of Format where appropriate
| -rw-r--r-- | Script.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1725,7 +1725,7 @@ func AdaptorFactory(args, int entryIndex, int entryColumn) min = true; } } - text = Format("%s %s", Format(entry[DT_Menu_Entry_Text], val), ["{{MN7I:4}}", "<c 808080>{{MN7I:4}}</c>"][min]); + text = Format(entry[DT_Menu_Entry_Text], val) .. " " .. ["{{MN7I:4}}", "<c 808080>{{MN7I:4}}</c>"][min]; ExtraIcon(text, icon, [MN7I, 3, max && RGB(128, 128, 128)]); defaultMsgboardText = "$EnterNumber$"; } |
