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 - Breakpoint highlighting in Breakpoints view problem
Summary: Breakpoint highlighting in Breakpoints view problem
Status: NEW
Alias: None
Product: debugger
Classification: Unclassified
Component: Code (show other bugs)
Version: 5.x
Hardware: All All
: P4 blocker (vote)
Assignee: Martin Entlicher
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2005-10-26 11:01 UTC by _ lcincura
Modified: 2009-12-17 07:47 UTC (History)
0 users

See Also:
Issue Type: DEFECT
Exception Reporter:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
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.