From 7b2c2d01a6c8e77d0141c5fe9dc5692d147f5bae Mon Sep 17 00:00:00 2001 From: Rainer Kottenhoff Date: Wed, 16 May 2018 19:31:46 +0200 Subject: [PATCH] + try: MUI Button Tooltip not working ? --- src/Notepad3.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/Notepad3.c b/src/Notepad3.c index b85fcd6f8..bb8c6c1a5 100644 --- a/src/Notepad3.c +++ b/src/Notepad3.c @@ -1962,6 +1962,10 @@ void CreateBars(HWND hwnd,HINSTANCE hInstance) tbbMainWnd[i].fsStyle |= BTNS_AUTOSIZE | BTNS_SHOWTEXT; } else { + GetLngString(tbbMainWnd[i].idCommand, tchDesc, COUNTOF(tchDesc)); + tbbMainWnd[i].iString = SendMessage(g_hwndToolbar, TB_ADDSTRING, 0, (LPARAM)tchDesc); // tooltip + tbbMainWnd[i].fsStyle |= TBSTYLE_TOOLTIPS; + //TODO: @@@ check why LNG tooltip is not working tbbMainWnd[i].fsStyle &= ~(BTNS_AUTOSIZE | BTNS_SHOWTEXT); } }