diff options
author | dartraiden <wowemuh@gmail.com> | 2025-01-05 01:20:05 +0300 |
---|---|---|
committer | dartraiden <wowemuh@gmail.com> | 2025-01-05 01:20:05 +0300 |
commit | a4f7bf920739d424ce75c47581f293cba453b64c (patch) | |
tree | 1aac7cc2faa8bb2e211a2091d709818ccd7d930b /plugins/Scriver/src/msgs.cpp | |
parent | 7982c6deaa1f214e5849f1d6017e1294360e8e56 (diff) |
Button/icon names unification across all message plugins
Diffstat (limited to 'plugins/Scriver/src/msgs.cpp')
-rw-r--r-- | plugins/Scriver/src/msgs.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/Scriver/src/msgs.cpp b/plugins/Scriver/src/msgs.cpp index 505e3170db..599fefe9a7 100644 --- a/plugins/Scriver/src/msgs.cpp +++ b/plugins/Scriver/src/msgs.cpp @@ -428,14 +428,14 @@ int RegisterToolbarIcons(WPARAM, LPARAM) bbd.dwDefPos = 30;
bbd.hIcon = g_plugin.getIconHandle(IDI_COLOR);
bbd.pwszText = LPGENW("&Color");
- bbd.pwszTooltip = LPGENW("Select a foreground color for the text");
+ bbd.pwszTooltip = LPGENW("Select text color");
g_plugin.addButton(&bbd);
bbd.dwButtonID = IDC_SRMM_BKGCOLOR;
bbd.dwDefPos = 35;
bbd.hIcon = g_plugin.getIconHandle(IDI_BKGCOLOR);
bbd.pwszText = LPGENW("&Background color");
- bbd.pwszTooltip = LPGENW("Select a background color for the text");
+ bbd.pwszTooltip = LPGENW("Select background color");
g_plugin.addButton(&bbd);
// chat buttons
|