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/InsertStringGestureData.java

    r1097 r1532  
    44       
    55        private String _string;
    6         private boolean _shiftDown; // Required for Shift+Tab
    7        
    86        public InsertStringGestureData(String string, boolean shiftDown)
    97        {
    10                 super();
     8                super(false);
    119                _string = string;
    1210                _shiftDown = shiftDown;
     
    1513        public InsertStringGestureData(char c, boolean shiftDown)
    1614        {
    17                 super();
     15                super(false);
    1816                _string = new String("" + c);
    1917                _shiftDown = shiftDown;
     
    3230        }
    3331       
    34         public boolean isShiftDown()
    35         {
    36                 return _shiftDown;
    37         }
    38        
    3932        @Override
    4033        public GestureData clone()
Note: See TracChangeset for help on using the changeset viewer.