Changeset 1199 for trunk


Ignore:
Timestamp:
11/28/18 15:43:01 (6 years ago)
Author:
bln4
Message:

org.expeditee.gio.gesture.StandardGestureActions ->

qualified some code with a comment.

File:
1 edited

Legend:

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

    r1186 r1199  
    391391                                FormatGestureData data = (FormatGestureData) gesture.getData();
    392392                                if (data.getHorizontal()) {
    393                                         Actions.PerformActionCatchErrors(data.getFrame(), null, "HFormat");
     393                                        Actions.LegacyPerformActionCatchErrors(data.getFrame(), null, "HFormat");
    394394                                } else {
    395                                         Actions.PerformActionCatchErrors(data.getFrame(), null, "Format");
     395                                        Actions.LegacyPerformActionCatchErrors(data.getFrame(), null, "Format");
    396396                                }
    397397                        }
     
    11721172                }
    11731173
    1174                 // TODO: What does this do? cts16
     1174                // Certain keys are handled by MagneticConstraints. 
     1175                // If the shift key is down the 'inverted' version of that key is used.
    11751176                if (isShiftDown && MagneticConstraints.getInstance().keyHit(-ch, on)) {
    11761177                        return;
     
    12511252                // check that the Text item still exists (hasn't been deleted\backspaced
    12521253                // away)
    1253                 if (text.isEmpty()) {
     1254                if (text.isEmpty() && text.getMinWidth() == null) {
    12541255                        _toRemove = text;
    12551256
Note: See TracChangeset for help on using the changeset viewer.