This Bugzilla instance is a read-only archive of historic NetBeans bug reports. To report a bug in NetBeans please follow the project's instructions for reporting issues.

Bug 67567

Summary: Breakpoint highlighting in Breakpoints view problem
Product: debugger Reporter: _ lcincura <lcincura>
Component: CodeAssignee: Martin Entlicher <mentlicher>
Status: NEW ---    
Severity: blocker    
Priority: P4    
Version: 5.x   
Hardware: All   
OS: All   
Issue Type: DEFECT Exception Reporter:

Description _ lcincura 2005-10-26 11:01:53 UTC
NetBeans IDE 5.0 [200510251800] on jdk1.5.0_05

1) have more breakpoints that can fit into bpt view
2) when a breakpoint is hit, which is not currently visible in the bpt view,
following happens:
   a) the breakpoint is above displayed breakpoitns => the view scrolls to the
breakpoint and higlights it
   b) the breakpoint is below displayed breakpoints => breakpoint is not
highlighted and view does not scroll anywhere
Comment 1 Martin Entlicher 2006-10-27 22:42:23 UTC
Right, reproduced. This is a defficiency in the models framework, one can not
say that a particular row should be made visible or selected via the viewmodels
framework.
Comment 2 Martin Entlicher 2007-05-23 16:06:44 UTC
I agree that this is annoying.
It would be best if we could automatically scroll to the rows that has changed.
We must take care, however, that we do not scroll too much when many rows
changes (e.g. in local variables or watches).
Comment 3 Martin Entlicher 2009-12-17 07:47:39 UTC
We can add some event similar to SelectionChanged, that can be used to make the given node visible.