diff options
author | dartraiden <wowemuh@gmail.com> | 2016-12-28 00:30:30 +0300 |
---|---|---|
committer | dartraiden <wowemuh@gmail.com> | 2016-12-28 00:30:50 +0300 |
commit | 029215463dca29e74b0c8ca8b419359b36c21873 (patch) | |
tree | b975aa081dd01fa7ff6e68a2aa1bc2a980a2d203 | |
parent | 8db6b3f25e173f7c305580fad8cbd67a7121b169 (diff) |
another missing hotkey text
-rw-r--r-- | plugins/Scriver/src/msgs.cpp | 2 | ||||
-rw-r--r-- | src/core/stdmsg/src/msgs.cpp | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/plugins/Scriver/src/msgs.cpp b/plugins/Scriver/src/msgs.cpp index 0a0658a0c6..db483297bd 100644 --- a/plugins/Scriver/src/msgs.cpp +++ b/plugins/Scriver/src/msgs.cpp @@ -472,7 +472,7 @@ int RegisterToolbarIcons(WPARAM, LPARAM) bbd.dwDefPos = 50;
bbd.hIcon = IcoLib_GetIconHandle("scriver_HISTORY");
bbd.pwszText = LPGENW("&History");
- bbd.pwszTooltip = LPGENW("View user's history");
+ bbd.pwszTooltip = LPGENW("View user's history (CTRL+H)");
Srmm_AddButton(&bbd);
// chat buttons
diff --git a/src/core/stdmsg/src/msgs.cpp b/src/core/stdmsg/src/msgs.cpp index 34f5c7c36f..1c419a0d3b 100644 --- a/src/core/stdmsg/src/msgs.cpp +++ b/src/core/stdmsg/src/msgs.cpp @@ -312,7 +312,7 @@ int RegisterToolbarIcons(WPARAM, LPARAM) bbd.dwDefPos = 40;
bbd.hIcon = Skin_GetIconHandle(SKINICON_OTHER_HISTORY);
bbd.pwszText = LPGENW("&History");
- bbd.pwszTooltip = LPGENW("View user's history");
+ bbd.pwszTooltip = LPGENW("View user's history (CTRL+H)");
Srmm_AddButton(&bbd);
// chat buttons
|