Changeset 1531 for trunk


Ignore:
Timestamp:
08/27/20 14:47:55 (4 years ago)
Author:
bnemhaus
Message:

When looking for templates, now look at all interactable items rather than just items on the frame. In other words, now includes @ItemTemplate from active overlays

File:
1 edited

Legend:

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

    r1524 r1531  
    21112111
    21122112                // check for an updated template...
    2113                 for (Item i : this.getSortedItems()) {
     2113                // for (Item i : this.getSortedItems()) {
     2114                for (Item i : this.getInteractableItems()) {
    21142115                        if (ItemUtils.startsWithTag(i, templateTag)) {
    21152116                                t = (Text) i;
Note: See TracChangeset for help on using the changeset viewer.