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 135228 - RE-OP: left edge of combined fragments is drawn too close of left edge of window
Summary: RE-OP: left edge of combined fragments is drawn too close of left edge of window
Status: NEW
Alias: None
Product: uml
Classification: Unclassified
Component: Reverse Engineering (show other bugs)
Version: 6.x
Hardware: All All
: P3 blocker (vote)
Assignee: issues@uml
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2008-05-16 17:26 UTC by Peter Lam
Modified: 2009-05-25 21:06 UTC (History)
0 users

See Also:
Issue Type: DEFECT
Exception Reporter:


Attachments
combined fragment left edge (28.95 KB, image/png)
2008-05-16 17:27 UTC, Peter Lam
Details

Note You need to log in before you can comment on or make changes to this bug.
Description Peter Lam 2008-05-16 17:26:51 UTC
build 20080513

re-op the following operation. The left edge of the outer combined fragment is too close to the left edge of the drawing
window that is very hard to tell. See the attached screenshot.

    public void testLoopWhile5(){
        
        List list = new LinkedList();
        
        loop_a: while( list.size() > 0 ){
            Iterator iter = list.iterator();
            
            loop_b: while(iter.hasNext()){
                list.remove(iter.next());
                break loop_b;
            }
            
            loop_c: while(iter.hasNext()){
                list.remove(list.size() - 1);
                continue loop_a;
            }
        }
    }
Comment 1 Peter Lam 2008-05-16 17:27:27 UTC
Created attachment 61493 [details]
combined fragment left edge
Comment 2 Sergey Petrov 2008-05-16 17:43:15 UTC
unfortunately it's hard just to add space to right, but still possible to move entire diagram right,
currently prefer to not fix it in this release but will look into if smth change a bit later.