summaryrefslogtreecommitdiff
path: root/src/commands.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/commands.cpp')
-rw-r--r--src/commands.cpp10
1 files changed, 9 insertions, 1 deletions
diff --git a/src/commands.cpp b/src/commands.cpp
index 0850ba909..dce8c57e0 100644
--- a/src/commands.cpp
+++ b/src/commands.cpp
@@ -351,7 +351,15 @@ impHandler0(cleanGraphics)
while(resman->cleanOrphans(true));
if (debugChatTab)
- debugChatTab->chatLog("cache cleaned");
+ debugChatTab->chatLog(_("Cache cleaned"));
+}
+
+impHandler0(cleanFonts)
+{
+ if (gui)
+ gui->clearFonts();
+ if (debugChatTab)
+ debugChatTab->chatLog(_("Cache cleaned"));
}
impHandler(join)