InstallColors /windows problems fixed
git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@750 212acab6-be3b-0410-9dea-997c60f758d6
This commit is contained in:
parent
a648b14a4b
commit
5bec529499
1 changed files with 7 additions and 3 deletions
|
@ -1318,9 +1318,13 @@ static BOOL CALLBACK InstProc(HWND hwndDlg, UINT uMsg, WPARAM wParam, LPARAM lPa
|
|||
ListView_InsertColumn(insthwnd, 0, &lvc);
|
||||
#define LVS_EX_LABELTIP 0x00004000 // listview unfolds partly hidden labels if it does not have infotip text
|
||||
ListView_SetExtendedListViewStyleEx(insthwnd, LVS_EX_LABELTIP, LVS_EX_LABELTIP);
|
||||
ListView_SetBkColor(insthwnd, lb_bg);
|
||||
ListView_SetTextBkColor(insthwnd, lb_bg);
|
||||
ListView_SetTextColor(insthwnd, lb_fg);
|
||||
if (lb_bg >= 0) {
|
||||
ListView_SetBkColor(insthwnd, lb_bg);
|
||||
ListView_SetTextBkColor(insthwnd, lb_bg);
|
||||
}
|
||||
if (lb_fg >= 0) {
|
||||
ListView_SetTextColor(insthwnd, lb_fg);
|
||||
}
|
||||
SetWindowText(insthwndbutton,STR(LANG_BTN_DETAILS));
|
||||
if (g_inst_cmnheader->show_details)
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue