Changeset 10713 in josm


Ignore:
Timestamp:
2016-08-03T14:30:12+02:00 (8 years ago)
Author:
simon04
Message:

About dialog: display readme in monospaced font

Location:
trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/README

    r10614 r10713  
    135135The 'patches' directory
    136136-----------------------
    137 Some libraries that JOSM depends on, are patched for various reasons. The files in the patches directory can be used to roll back these customizations. This is useful in order to
    138 
     137Some libraries that JOSM depends on, are patched for various reasons. The
     138files in the patches directory can be used to roll back these customizations.
     139This is useful in order to
    139140 * inspect the changes
    140141 * update to a newer version of the library but keep the modifications
  • trunk/src/org/openstreetmap/josm/actions/AboutAction.java

    r10428 r10713  
    5858
    5959        JosmTextArea readme = new JosmTextArea();
     60        readme.setFont(GuiHelper.getMonospacedFont(readme));
    6061        readme.setEditable(false);
    6162        setTextFromResourceFile(readme, "/README");
     
    6364
    6465        JosmTextArea revision = new JosmTextArea();
     66        revision.setFont(GuiHelper.getMonospacedFont(revision));
    6567        revision.setEditable(false);
    6668        revision.setText(version.getReleaseAttributes());
Note: See TracChangeset for help on using the changeset viewer.