Changeset 1445 for trunk


Ignore:
Timestamp:
11/08/19 14:06:59 (4 years ago)
Author:
bnemhaus
Message:

Fixed a bug with injecting properties into a frame name item. In some situations the frame name item did not have a owner, which caused a permission check in StandardGestureActions::deleteItemsAction to fail. In order to fix this, when the frame name item is constructed, the owner is now set to be the owner of the Frame.

File:
1 edited

Legend:

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

    r1434 r1445  
    724724                _frameName = new Text(id);
    725725                _frameName.setParent(this);
     726                _frameName.setOwner(this.getOwner());
    726727                _frameName.setText(getFramesetName() + _number);
    727728                _frameName.resetFrameNamePosition();
Note: See TracChangeset for help on using the changeset viewer.