From fbd188853c6cba7b353b8fe5003d43f0efca1107 Mon Sep 17 00:00:00 2001 From: Daniel Gibson Date: Tue, 13 Jul 2021 04:22:01 +0200 Subject: [PATCH] Debugger: Make "Filename" colums wider and "Line" column narrower. The "Filename" columns weren't wide enough for many script filenames --- neo/tools/debugger/DebuggerWindow.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/neo/tools/debugger/DebuggerWindow.cpp b/neo/tools/debugger/DebuggerWindow.cpp index 248cea18..5ca702e4 100644 --- a/neo/tools/debugger/DebuggerWindow.cpp +++ b/neo/tools/debugger/DebuggerWindow.cpp @@ -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 );