Changeset 709


Ignore:
Timestamp:
01/16/14 15:37:01 (10 years ago)
Author:
jts21
Message:

Fix widget help text (was broken in commit #700)

File:
1 edited

Legend:

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

    r705 r709  
    224224                if(lr != null) status += command(mod, left | right) + lr + padding.substring(lr.length());
    225225                if(mr != null) status += command(mod, middle | right) + mr + padding.substring(mr.length());
    226                 if(dl != null || dm != null || dr != null || iw != null) status += "\n Drag: ";
     226                if(dl != null || dm != null || dr != null) status += "\n Drag: ";
    227227                if(dl != null) status += command(mod, left) + dl + padding.substring(dl.length());
    228228                if(dm != null) status += command(mod, middle) + dm + padding.substring(dm.length());
    229229                if(dr != null) status += command(mod, right) + dr + padding.substring(dr.length());
    230                 if(iw != null) status += commandPadding + "Widget: " + iw.getClass().getSimpleName();
     230                if(iw != null) status += "\n Widget: " + iw.getClass().getSimpleName();
    231231               
    232232               
Note: See TracChangeset for help on using the changeset viewer.