From 79a2f0c70c6a13c5454b9b7699c14559f5739396 Mon Sep 17 00:00:00 2001 From: Rene Gollent Date: Mon, 22 Jul 2013 23:00:35 -0400 Subject: [PATCH] Debugger: Fix insets in BreakConditionConfigWindow. --- .../gui/team_window/BreakConditionConfigWindow.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/apps/debugger/user_interface/gui/team_window/BreakConditionConfigWindow.cpp b/src/apps/debugger/user_interface/gui/team_window/BreakConditionConfigWindow.cpp index e1379aa9ce..f750f82bea 100644 --- a/src/apps/debugger/user_interface/gui/team_window/BreakConditionConfigWindow.cpp +++ b/src/apps/debugger/user_interface/gui/team_window/BreakConditionConfigWindow.cpp @@ -275,8 +275,8 @@ BreakConditionConfigWindow::_Init() { fExceptionSettingsBox = new BBox("exceptionBox"); fExceptionSettingsBox->SetLabel("Exceptions"); - fExceptionSettingsBox->AddChild(BLayoutBuilder::Group<>(B_VERTICAL, - B_USE_DEFAULT_SPACING) + fExceptionSettingsBox->AddChild(BLayoutBuilder::Group<>(B_VERTICAL) + .SetInsets(B_USE_DEFAULT_SPACING) .Add(fExceptionThrown = new BCheckBox("exceptionThrown", "Stop when an exception is thrown", new BMessage(MSG_STOP_ON_THROWN_EXCEPTION_CHANGED)))