diff options
-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
|