Changeset 1425 for trunk


Ignore:
Timestamp:
07/31/19 12:22:53 (5 years ago)
Author:
bln4
Message:

Fixed bug were saving lost you the lines from the primaries list.

File:
1 edited

Legend:

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

    r1415 r1425  
    25832583                List<Item> toSave = new ArrayList<Item>();
    25842584               
    2585                 body.removeIf(item -> item.dontSave());
    25862585                for (Item item: body) {
     2586                       
     2587                        if (item == null || item.dontSave()) {
     2588                                continue;
     2589                        }
     2590                       
    25872591                        if (item instanceof WidgetCorner) {
    25882592                                // Save the widget source. 
     
    29342938        }
    29352939
    2936         protected ItemsList getBody() {
     2940        public ItemsList getBody() {
    29372941                return _body;
    29382942        }
Note: See TracChangeset for help on using the changeset viewer.