Ignore:
Timestamp:
09/04/18 12:26:13 (6 years ago)
Author:
bln4
Message:

org.expeditee.gui.Popup ->

Fixed a bug in the Popup class that was causing a line to be drawn when Apollo was run. Now correctly does not try to draw when hidden.


org.expeditee.io.ItemSelection ->

When pasting a image from the clipboard, Expeditee imports the image into the images folder. This alternation makes it so the resulting @i uses the relative location rather than absolute.

File:
1 edited

Legend:

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

    r1102 r1104  
    160160                // Make sure the popup isn't hidden
    161161                AxisAlignedBoxBounds currentBounds = getBounds();
    162                 if (currentBounds == null) return;
     162                if (_hidden || currentBounds == null) return;
    163163               
    164164                // Draw border and background
Note: See TracChangeset for help on using the changeset viewer.