summaryrefslogtreecommitdiff
path: root/plugins/SmileyAdd/src
diff options
context:
space:
mode:
authorGeorge Hazan <ghazan@miranda.im>2019-05-31 20:00:19 +0300
committerGeorge Hazan <ghazan@miranda.im>2019-05-31 20:00:19 +0300
commit05b0938890448c75da5d40d4c9afbc3c505d3d57 (patch)
treeb37dc5df5a03719d752631b0c3026057bce63d26 /plugins/SmileyAdd/src
parent4e3b5eb4818507ac056999367ec8fccecf9ffa69 (diff)
fix for ... button behavior
Diffstat (limited to 'plugins/SmileyAdd/src')
-rw-r--r--plugins/SmileyAdd/src/options.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/plugins/SmileyAdd/src/options.cpp b/plugins/SmileyAdd/src/options.cpp
index 2781a60508..5195c4e9cc 100644
--- a/plugins/SmileyAdd/src/options.cpp
+++ b/plugins/SmileyAdd/src/options.cpp
@@ -152,8 +152,9 @@ class COptionsDialog : public CDlgBase
return false;
wchar_t szOutPath[MAX_PATH];
- PathToRelativeW(filename, szOutPath);
+ PathToRelativeW(filename, szOutPath, g_plugin.wszDefaultPath);
smc->SetFilename(szOutPath);
+ UpdateControls();
return true;
}