Ignore:
Timestamp:
08/25/08 15:19:25 (16 years ago)
Author:
ra33
Message:

Fixed some bugs...
AbstractCharts can not be copied, resized, etc

File:
1 edited

Legend:

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

    r247 r278  
    500500                        // Set the new frame
    501501                        _CurrentFrames[getCurrentSide()] = frame;
    502                         frame.refreshSize(FrameGraphics.getMaxFrameSize());
     502                        frame.refreshSize();
    503503                        // Notify items on the frame being displayed that they are in view
    504504                        // ie. widgets use this method to add themselves to the content pane
     
    745745                        _VisitedFrames[opposite].add(hiding.getName());
    746746                        _CurrentFrames[opposite] = null;
    747                         _CurrentFrames[current].refreshSize(FrameGraphics.getMaxFrameSize());
     747                        _CurrentFrames[current].refreshSize();
    748748                }
    749749                if (_CurrentFrames[current] != null)
    750                         _CurrentFrames[current].refreshSize(FrameGraphics.getMaxFrameSize());
     750                        _CurrentFrames[current].refreshSize();
    751751                if (_CurrentFrames[opposite] != null)
    752752                        _CurrentFrames[opposite]
    753                                         .refreshSize(FrameGraphics.getMaxFrameSize());
     753                                        .refreshSize();
    754754
    755755                FrameGraphics.Clear();
Note: See TracChangeset for help on using the changeset viewer.