diff --git a/src/apps/debugger/user_interface/gui/team_window/BreakpointListView.cpp b/src/apps/debugger/user_interface/gui/team_window/BreakpointListView.cpp index a3742d8f3b..9d4c9391a3 100644 --- a/src/apps/debugger/user_interface/gui/team_window/BreakpointListView.cpp +++ b/src/apps/debugger/user_interface/gui/team_window/BreakpointListView.cpp @@ -453,6 +453,7 @@ void BreakpointListView::_Init(BView* filterTarget) { fBreakpointsTable = new Table("breakpoints list", 0, B_FANCY_BORDER); + fBreakpointsTable->SetFont(B_FONT_ROW, be_fixed_font); AddChild(fBreakpointsTable->ToView()); // columns diff --git a/src/apps/debugger/user_interface/gui/team_window/ImageFunctionsView.cpp b/src/apps/debugger/user_interface/gui/team_window/ImageFunctionsView.cpp index c47bf21d8c..ac6edbe46e 100644 --- a/src/apps/debugger/user_interface/gui/team_window/ImageFunctionsView.cpp +++ b/src/apps/debugger/user_interface/gui/team_window/ImageFunctionsView.cpp @@ -817,6 +817,7 @@ void ImageFunctionsView::_Init() { fFunctionsTable = new TreeTable("functions", 0, B_FANCY_BORDER); + fFunctionsTable->SetFont(B_FONT_ROW, be_fixed_font); AddChild(fFunctionsTable->ToView()); AddChild(fFilterField = new BTextControl("filtertext", "Filter:", NULL, NULL)); diff --git a/src/apps/debugger/user_interface/gui/team_window/ImageListView.cpp b/src/apps/debugger/user_interface/gui/team_window/ImageListView.cpp index d647a451c5..fb2c630996 100644 --- a/src/apps/debugger/user_interface/gui/team_window/ImageListView.cpp +++ b/src/apps/debugger/user_interface/gui/team_window/ImageListView.cpp @@ -300,6 +300,7 @@ void ImageListView::_Init() { fImagesTable = new Table("images list", 0, B_FANCY_BORDER); + fImagesTable->SetFont(B_FONT_ROW, be_fixed_font); AddChild(fImagesTable->ToView()); // columns diff --git a/src/apps/debugger/user_interface/gui/team_window/RegistersView.cpp b/src/apps/debugger/user_interface/gui/team_window/RegistersView.cpp index d66faff618..a097d742b9 100644 --- a/src/apps/debugger/user_interface/gui/team_window/RegistersView.cpp +++ b/src/apps/debugger/user_interface/gui/team_window/RegistersView.cpp @@ -388,6 +388,7 @@ void RegistersView::_Init() { fRegisterTable = new Table("register list", 0, B_FANCY_BORDER); + fRegisterTable->SetFont(B_FONT_ROW, be_fixed_font); AddChild(fRegisterTable->ToView()); // columns diff --git a/src/apps/debugger/user_interface/gui/team_window/StackTraceView.cpp b/src/apps/debugger/user_interface/gui/team_window/StackTraceView.cpp index bbce26ed50..6e6a98b723 100644 --- a/src/apps/debugger/user_interface/gui/team_window/StackTraceView.cpp +++ b/src/apps/debugger/user_interface/gui/team_window/StackTraceView.cpp @@ -231,6 +231,7 @@ void StackTraceView::_Init() { fFramesTable = new Table("stack trace", 0, B_FANCY_BORDER); + fFramesTable->SetFont(B_FONT_ROW, be_fixed_font); AddChild(fFramesTable->ToView()); fFramesTable->SetSortingEnabled(false); diff --git a/src/apps/debugger/user_interface/gui/team_window/VariablesView.cpp b/src/apps/debugger/user_interface/gui/team_window/VariablesView.cpp index 0237b1b5c2..e9fdef3624 100644 --- a/src/apps/debugger/user_interface/gui/team_window/VariablesView.cpp +++ b/src/apps/debugger/user_interface/gui/team_window/VariablesView.cpp @@ -2554,6 +2554,7 @@ void VariablesView::_Init(ValueNodeManager* manager) { fVariableTable = new TreeTable("variable list", 0, B_FANCY_BORDER); + fVariableTable->SetFont(B_FONT_ROW, be_fixed_font); AddChild(fVariableTable->ToView()); fVariableTable->SetSortingEnabled(false);