diff options
author | George Hazan <ghazan@miranda.im> | 2019-08-09 14:10:20 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2019-08-09 14:10:20 +0300 |
commit | edba1adf6418cc8d096acb56db05871762b0ff7d (patch) | |
tree | acc13f82771730b8cbe8659e088707a1b13ed2b0 /plugins/TabSRMM/src/msgs.cpp | |
parent | 8d9e22cfcb01180289388f06142ffcab7f93d7d4 (diff) |
fixes #2023 (Cannot edit "Open new chat rooms in the default container" setting when using a screen reader on Windows)
Diffstat (limited to 'plugins/TabSRMM/src/msgs.cpp')
-rw-r--r-- | plugins/TabSRMM/src/msgs.cpp | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/plugins/TabSRMM/src/msgs.cpp b/plugins/TabSRMM/src/msgs.cpp index 6690baac95..9066819205 100644 --- a/plugins/TabSRMM/src/msgs.cpp +++ b/plugins/TabSRMM/src/msgs.cpp @@ -910,12 +910,7 @@ static int TSAPI LoadFromIconLib() PluginConfig.g_buttonBarIconHandles[1] = Skin_GetIconHandle(SKINICON_OTHER_ADDCONTACT);
PluginConfig.g_buttonBarIconHandles[20] = Skin_GetIconHandle(SKINICON_OTHER_USERDETAILS);
- PluginConfig.g_buttonBarIcons[ICON_DEFAULT_TYPING] =
- PluginConfig.g_buttonBarIcons[12] = Skin_LoadIcon(SKINICON_OTHER_TYPING);
- PluginConfig.g_IconChecked = Skin_LoadIcon(SKINICON_OTHER_TICK);
- PluginConfig.g_IconUnchecked = Skin_LoadIcon(SKINICON_OTHER_NOTICK);
- PluginConfig.g_IconGroupOpen = Skin_LoadIcon(SKINICON_OTHER_GROUPOPEN);
- PluginConfig.g_IconGroupClose = Skin_LoadIcon(SKINICON_OTHER_GROUPSHUT);
+ PluginConfig.g_buttonBarIcons[ICON_DEFAULT_TYPING] = PluginConfig.g_buttonBarIcons[12] = Skin_LoadIcon(SKINICON_OTHER_TYPING);
PluginConfig.g_iconOverlayEnabled = IcoLib_GetIcon("tabSRMM_overlay_enabled");
PluginConfig.g_iconOverlayDisabled = IcoLib_GetIcon("tabSRMM_overlay_disabled");
|