From c860c5d4513a33283964f56b40fe43d523791528 Mon Sep 17 00:00:00 2001 From: Robert Sesek Date: Wed, 18 Jun 2008 14:13:07 -0400 Subject: [PATCH] Tell the breakpoints window to open at launch, though in back of the debugger * Source/BreakpointWindowController.m: (init): [orderBack:] the window --- Source/BreakpointWindowController.m | 1 + 1 file changed, 1 insertion(+) diff --git a/Source/BreakpointWindowController.m b/Source/BreakpointWindowController.m index 08062df..631ee0a 100644 --- a/Source/BreakpointWindowController.m +++ b/Source/BreakpointWindowController.m @@ -30,6 +30,7 @@ if (self = [super initWithWindowNibName:@"Breakpoints"]) { manager = [BreakpointManager sharedManager]; + [[self window] orderBack:nil]; } return self; } -- 2.22.5