mirror of
https://github.com/dhewm/dhewm3.git
synced 2025-03-21 18:21:08 +00:00
Debugger: Make "Filename" colums wider
and "Line" column narrower. The "Filename" columns weren't wide enough for many script filenames
This commit is contained in:
parent
4172b006cc
commit
fbd188853c
1 changed files with 3 additions and 3 deletions
|
@ -917,7 +917,7 @@ int rvDebuggerWindow::HandleCreate ( WPARAM wparam, LPARAM lparam )
|
|||
col.cx = 20;
|
||||
col.pszText = "";
|
||||
ListView_InsertColumn ( mWndScriptList, 0, &col);
|
||||
col.cx = 150;
|
||||
col.cx = 350;
|
||||
col.pszText = "Filename";
|
||||
ListView_InsertColumn ( mWndScriptList, 1, &col );
|
||||
|
||||
|
@ -927,10 +927,10 @@ int rvDebuggerWindow::HandleCreate ( WPARAM wparam, LPARAM lparam )
|
|||
col.cx = 150;
|
||||
col.pszText = "Function";
|
||||
ListView_InsertColumn ( mWndCallstack, 1, &col );
|
||||
col.cx = 150;
|
||||
col.cx = 50;
|
||||
col.pszText = "Line";
|
||||
ListView_InsertColumn ( mWndCallstack, 2, &col );
|
||||
col.cx = 150;
|
||||
col.cx = 350;
|
||||
col.pszText = "Filename";
|
||||
ListView_InsertColumn ( mWndCallstack, 3, &col );
|
||||
|
||||
|
|
Loading…
Reference in a new issue