diff options
Diffstat (limited to 'src/actions')
-rw-r--r-- | src/actions/actions.cpp | 16 | ||||
-rw-r--r-- | src/actions/actions.h | 1 |
2 files changed, 17 insertions, 0 deletions
diff --git a/src/actions/actions.cpp b/src/actions/actions.cpp index a46e37347..65f6e366c 100644 --- a/src/actions/actions.cpp +++ b/src/actions/actions.cpp @@ -702,4 +702,20 @@ impHandler(undress) return true; } +impHandler0(dirs) +{ + if (!debugChatTab) + return false; + + debugChatTab->chatLog("config directory: " + + settings.configDir); + debugChatTab->chatLog("logs directory: " + + settings.localDataDir); + debugChatTab->chatLog("screenshots directory: " + + settings.screenshotDir); + debugChatTab->chatLog("temp directory: " + + settings.tempDir); + return true; +} + } // namespace Actions diff --git a/src/actions/actions.h b/src/actions/actions.h index 4b586b169..f80c4f8e6 100644 --- a/src/actions/actions.h +++ b/src/actions/actions.h @@ -66,6 +66,7 @@ namespace Actions decHandler(cacheInfo); decHandler(disconnect); decHandler(undress); + decHandler(dirs); } // namespace Actions #undef decHandler |