Changeset 704


Ignore:
Timestamp:
01/16/14 13:23:20 (10 years ago)
Author:
davidb
Message:

Some word changes to mouse-status-bar help text

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/expeditee/gui/Help.java

    r700 r704  
    6868                case widget: return "Middle click widget";
    6969                case background:
    70                 if((other & cursor) != 0) return FreeItems.hasMultipleVisibleItems() ? "Place items" : "Place item";
    71                 return "Create arrow";
     70                if((other & cursor) != 0) return FreeItems.hasMultipleVisibleItems() ? "Put down items" : "Put down item";
     71                return "Draw line/arrow";
    7272                case line:
    7373                        if((mod & shift) != 0) return "Extend shape";
     
    7777                        if((other & cursor) != 0 && FreeItems.getInstance().size() == 1 && FreeItems.textOnlyAttachedToCursor()) return "Merge text";
    7878                default:
    79                         if((other & cursor) != 0) return FreeItems.hasMultipleVisibleItems() ? "Place items" : "Place item";
    80                 if((mod & shift) != 0) return "Create arrow";
     79                        if((other & cursor) != 0) return FreeItems.hasMultipleVisibleItems() ? "Put down items" : "Put down item";
     80                if((mod & shift) != 0) return "Draw line/arrow";
    8181                        return "Pickup item";
    8282                }
     
    8888                case background:
    8989                        if((other & cursor) != 0) {
    90                                 if(FreeItems.isDrawingPolyLine()) return "Continue poly-line";
     90                                if(FreeItems.isDrawingPolyLine()) return "Continue polyline";
    9191                                return FreeItems.hasMultipleVisibleItems() ? "Stamp items" : "Stamp item";
    9292                        }
Note: See TracChangeset for help on using the changeset viewer.