diff options
author | Robert Pösel <robyer@seznam.cz> | 2014-12-09 17:07:17 +0000 |
---|---|---|
committer | Robert Pösel <robyer@seznam.cz> | 2014-12-09 17:07:17 +0000 |
commit | 278ba931862278aa0b2ea9fae11fd4198cdb1442 (patch) | |
tree | 8795cfc639d741df8d78fc8216477fab40894029 /protocols | |
parent | 61267f5397e090ec47a0427366884c1024cd8687 (diff) |
Steam: Fix enabling apply button in option when changing avatars size
git-svn-id: http://svn.miranda-ng.org/main/trunk@11299 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols')
-rw-r--r-- | protocols/Steam/src/steam_dialogs.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/protocols/Steam/src/steam_dialogs.cpp b/protocols/Steam/src/steam_dialogs.cpp index fe3e5fcd2e..033625757a 100644 --- a/protocols/Steam/src/steam_dialogs.cpp +++ b/protocols/Steam/src/steam_dialogs.cpp @@ -202,6 +202,10 @@ INT_PTR CALLBACK CSteamProto::MainOptionsProc(HWND hwnd, UINT message, WPARAM wP SendMessage(GetParent(hwnd), PSM_CHANGED, 0, 0);
}
break;
+
+ default:
+ SendMessage(GetParent(hwnd), PSM_CHANGED, 0, 0);
+ break;
}
}
break;
|