Changeset 705


Ignore:
Timestamp:
01/16/14 13:29:18 (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

    r704 r705  
    7979                        if((other & cursor) != 0) return FreeItems.hasMultipleVisibleItems() ? "Put down items" : "Put down item";
    8080                if((mod & shift) != 0) return "Draw line/arrow";
    81                         return "Pickup item";
     81                        return FreeItems.hasMultipleVisibleItems() ? "Pickup items" : "Pickup item";
    8282                }
    8383        }
     
    8989                        if((other & cursor) != 0) {
    9090                                if(FreeItems.isDrawingPolyLine()) return "Continue polyline";
    91                                 return FreeItems.hasMultipleVisibleItems() ? "Stamp items" : "Stamp item";
     91                                return "Stamp copy";
    9292                        }
    93                         return "Create rectangle";
     93                        return "Draw rectangle";
    9494                case line:
    9595                        if((mod & shift) != 0) return "Add line";
    9696                default:
    97                         if((other & cursor) != 0) return FreeItems.hasMultipleVisibleItems() ? "Stamp items" : "Stamp item";
    98                         if((mod & shift) != 0) return "Create rectangle";
     97                        if((other & cursor) != 0) return "Stamp copy";
     98                        if((mod & shift) != 0) return "Draw rectangle";
    9999                        if(context == Context.polygon) return "Copy enclosed items";
    100100                        return "Copy item";
Note: See TracChangeset for help on using the changeset viewer.