+ try: MUI Button Tooltip not working ?

This commit is contained in:
Rainer Kottenhoff 2018-05-16 19:31:46 +02:00
parent 1cbe0b2533
commit 7b2c2d01a6

View File

@ -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);
}
}