Ignore:
Timestamp:
11/13/19 15:15:33 (5 years ago)
Author:
bnemhaus
Message:

Fixed bug I introduced in the delete image file on delete expeditee picture. Bug was causing issues with non-shift delete of pictures, this is fixed now.

File:
1 edited

Legend:

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

    r1448 r1450  
    19821982                // the current frame as well as the overlay frame
    19831983                Frame currentFrame = DisplayController.getCurrentFrame();
    1984                 currentFrame.addToUndoDelete(new ItemsList(itemList));
     1984                currentFrame.addToUndoDelete(new ItemsList(itemList), false);
    19851985                itemList.clear();
    19861986                if (bReparse) {
     
    33053305                        SessionStats.DeletedItems(toUndo);
    33063306                        if (parent != null) {
    3307                                 parent.addToUndoDelete(new ItemsList(toUndo));
     3307                                parent.addToUndoDelete(new ItemsList(toUndo), !canditateFilesToDelete.isEmpty());
    33083308                                parent.removeAllItems(toUndo); // toDelete.getConnected()
    33093309                                deleteUnusedFiles(canditateFilesToDelete);
Note: See TracChangeset for help on using the changeset viewer.