Ignore:
Timestamp:
08/31/20 16:26:59 (4 years ago)
Author:
bnemhaus
Message:

New feature: when creating a frameset, if the item being used is linked and you hold shift, it will use the items on the linked frame to populate the zero frame of the new frameset

File:
1 edited

Legend:

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

    r1097 r1532  
    1414        protected Collection<Item> _currentItems;
    1515        protected Collection<Item> _enclosure;
     16        protected boolean _shiftDown;
    1617       
    17         public ItemSpecificGestureData(Item item)
     18        public ItemSpecificGestureData(Item item, boolean isShiftDown)
    1819        {
    1920                super();
    2021                _currentItem = item;
     22                _shiftDown = isShiftDown;
    2123        }
    2224       
    23         public ItemSpecificGestureData()
     25        public ItemSpecificGestureData(boolean isShiftDown)
    2426        {
    2527                super();
    2628                init();
     29                _shiftDown = isShiftDown;
    2730        }
    2831       
     
    8386                return new ItemSpecificGestureData(this);
    8487        }
     88
     89        public boolean isShiftDown() {
     90                return _shiftDown;
     91        }
    8592}
Note: See TracChangeset for help on using the changeset viewer.