Ignore:
Timestamp:
08/21/08 11:20:24 (16 years ago)
Author:
ra33
Message:
 
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/expeditee/gui/FrameGraphics.java

    r226 r242  
    345345                }
    346346
     347                HashSet<Item> paintedFillsAndLines = new HashSet<Item>();
    347348                // FIRST: Paint widgets swing gui (not expeditee gui) .
    348349                // Note that these are the anchored widgets
     
    351352                        InteractiveWidget iw = widgetItor.previous();
    352353                        if (clip == null
    353                                         || clip.intersects(iw.getComponant().getBounds()))
    354                                 iw.paint(bg);                           
     354                                        || clip.intersects(iw.getComponant().getBounds())){
     355                                iw.paint(bg);   
     356                                PaintItem(bg, iw.getItems().get(4));
     357                                paintedFillsAndLines.addAll(iw.getItems());
     358                        }
    355359                }
    356360
     
    381385                // Only paint files and lines once ... between anchored AND free
    382386                // items
    383                 HashSet<Item> paintedFillsAndLines = new HashSet<Item>();
    384387                PaintPictures(bg, paintItems, fillOnlyItems, paintedFillsAndLines);
    385388                PaintLines(bg, visibleItems);
     
    679682                        if (toDisconnect != null && !(i instanceof WidgetEdge)) {
    680683                                Item.HighlightMode newMode = toDisconnect.getHighlightMode();
    681                                 if (FreeItems.itemAttachedToCursor())
     684                                if (FreeItems.itemsAttachedToCursor())
    682685                                        newMode = Item.HighlightMode.Normal;
    683686                                // unhighlight all the other dots
Note: See TracChangeset for help on using the changeset viewer.