Ignore:
Timestamp:
2016-11-27T02:36:59+01:00 (7 years ago)
Author:
Don-vip
Message:

fix #14032 - include editor (retrieved from created_by changeset tag) in history dialog

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/gui/history/VersionTableColumnModel.java

    r10308 r11322  
    2525    /** Column index for user */
    2626    public static final int COL_USER = 4;
     27    /** Column index for editor */
     28    public static final int COL_EDITOR = 5;
    2729
    2830    /**
     
    6769        col.setResizable(false);
    6870        addColumn(col);
     71        // column 5 - Editor
     72        col = new TableColumn(COL_EDITOR);
     73        col.setHeaderValue(tr("Editor"));
     74        col.setResizable(false);
     75        addColumn(col);
    6976    }
    7077}
Note: See TracChangeset for help on using the changeset viewer.