Ignore:
Timestamp:
2008-10-10T15:06:43+13:00 (16 years ago)
Author:
oranfry
Message:

fixes to the last change and made the selectinput render more nicely

File:
1 edited

Legend:

Unmodified
Added
Removed
  • release-kits/shared/ant-installer/src/org/tp23/antinstaller/renderer/swing/ProgressPageRenderer.java

    r17514 r17517  
    8383    }
    8484
    85 
    8685    /**
    8786     * instanceInit
    8887     */
     88    public void reInstanceInit() {
     89        feedBackLabel.setText(org.tp23.antinstaller.Installer.langPack.getString("click")+" "+ctx.getInstaller().getFinishButtonText()+" "+org.tp23.antinstaller.Installer.langPack.getString("toContinue"));
     90        jToggleButton.setText(org.tp23.antinstaller.Installer.langPack.getString("showDetails"));
     91
     92        jTabbedPane.removeAll();
     93        jTabbedPane.add(org.tp23.antinstaller.Installer.langPack.getString("output"), outPanel);
     94        jTabbedPane.add(org.tp23.antinstaller.Installer.langPack.getString("errors"), errPanel);
     95    }
     96
    8997    public void instanceInit() {
    9098        showTargets = ((ProgressPage)page).isShowTargets();
     
    152160        //jTabbedPane.setBounds(new Rectangle(4, MESSAGE_PANEL_HEIGHT, PAGE_WIDTH-12, 214));
    153161
    154         this.getNextButton().setEnabled(false);
     162        this.getNextButton().setVisible(false);
    155163        this.getFinishButton().setText(ctx.getInstaller().getFinishButtonText());
    156         this.getFinishButton().setEnabled(true);
     164        this.getFinishButton().setVisible(true);
    157165    }
    158166
Note: See TracChangeset for help on using the changeset viewer.