Ignore:
Timestamp:
2012-01-01T21:08:20+01:00 (12 years ago)
Author:
malcolmh
Message:

'New release'

Location:
applications/editors/josm/plugins/smed
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • applications/editors/josm/plugins/smed/build.xml

    r27379 r27383  
    4141    <!-- this is the directory where the plugin jar is copied to -->
    4242    <property name="plugin.dist.dir" value="../../dist"/>
     43    <property name="smed_core.dist.dir" value="core/dist/"/>
    4344    <property name="ant.build.javac.target" value="1.5"/>
    44     <property name="plugin.dist.dir" value="../../dist"/>
    4545    <property name="plugin.jar" value="${plugin.dist.dir}/${ant.project.name}.jar"/>
    4646    <!--
  • applications/editors/josm/plugins/smed/plugs/oseam/src/oseam/panels/PanelSectors.java

    r27230 r27383  
    6969                getContentPane().add(panel);
    7070
    71                 table.setSize(860, ((table.getRowCount() * 16) + 20));
     71                table.setSize(860, ((table.getRowCount() * 16) + 24));
    7272               
    7373                table.setDefaultRenderer(String.class, new CentreRenderer());
     
    278278        public void addSector(int idx) {
    279279                dlg.panelMain.mark.addLight(idx);
    280                 table.setSize(860, ((table.getRowCount() * 16) + 18));
     280                table.setSize(860, ((table.getRowCount() * 16) + 24));
    281281                if (table.getRowCount() > 3) {
    282                         setSize(900, ((table.getRowCount() * 16) + 40));
     282                        setSize(900, ((table.getRowCount() * 16) + 44));
    283283                } else {
    284284                        setSize(900, 100);
     
    289289                if (idx > 0) {
    290290                        dlg.panelMain.mark.delLight(idx);
    291                         table.setSize(860, ((table.getRowCount() * 16) + 20));
     291                        table.setSize(860, ((table.getRowCount() * 16) + 24));
    292292                        if (table.getRowCount() > 3) {
    293                                 setSize(900, ((table.getRowCount() * 16) + 40));
     293                                setSize(900, ((table.getRowCount() * 16) + 44));
    294294                        } else {
    295295                                setSize(900, 100);
     
    300300        public void syncPanel() {
    301301                table.updateUI();
    302                 table.setSize(860, ((table.getRowCount() * 16) + 18));
     302                table.setSize(860, ((table.getRowCount() * 16) + 24));
    303303                if (table.getRowCount() > 3) {
    304                         setSize(900, ((table.getRowCount() * 16) + 40));
     304                        setSize(900, ((table.getRowCount() * 16) + 44));
    305305                } else {
    306306                        setSize(900, 100);
Note: See TracChangeset for help on using the changeset viewer.