Merge pull request #743 from toehead2001/window-styles

Get rid of WS_EX_CLIENTEDGE
This commit is contained in:
zilmar 2015-11-10 23:01:02 +11:00
commit 21163cb870
1 changed files with 1 additions and 1 deletions

View File

@ -333,7 +333,7 @@ void CRomBrowser::AllocateBrushs(void)
void CRomBrowser::CreateRomListControl(void)
{
m_hRomList = (HWND)CreateWindowEx(WS_EX_CLIENTEDGE, WC_LISTVIEW, NULL,
m_hRomList = (HWND)CreateWindow(WC_LISTVIEW, NULL,
WS_TABSTOP | WS_VISIBLE | WS_CHILD | LVS_OWNERDRAWFIXED |
LVS_SINGLESEL | LVS_REPORT,
0, 0, 0, 0, m_MainWindow, (HMENU)IDC_ROMLIST, GetModuleHandle(NULL), NULL);