Ignore:
Timestamp:
11/12/19 13:31:04 (5 years ago)
Author:
bnemhaus
Message:

org.expeditee.gui.managment.ResourceUtil.newImageWithName(Image, String) now handles the generation of new images when copy/pasting images that do not have a file (for example, from a web page or paint program)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/expeditee/gio/gesture/StandardGestureActions.java

    r1415 r1446  
    37633763               
    37643764                // check permissions
     3765                boolean isSameOwner = item.getOwner().equals(UserSettings.UserName.get());
    37653766                boolean isOwnerPermissionChange =
    3766                                 item.getOwner().equals(UserSettings.UserName.get()) && merger.getText().startsWith("Permission:");     
     3767                                isSameOwner && merger.getText().startsWith("Permission:");     
    37673768                if (!item.hasPermission(UserAppliedPermission.full) && !isOwnerPermissionChange) {
    37683769                        // Items on the message box have parent == null
Note: See TracChangeset for help on using the changeset viewer.