Revision 25005 trunk/libraries/libCorePlugin/src/com/iver/core/NotificationDialog.java

View differences:

NotificationDialog.java
67 67
    private JButton bNoDetails = null;
68 68
    private JButton bAcept = null;
69 69
    private JScrollPane pScrollDescription = null;
70
	private int width = 470;
71
	private int height = 175;
70 72

  
71 73
    /**
72 74
     * This is the default constructor
......
84 86
        Consola.consolaFrame.setLocation(new java.awt.Point(11, 140));
85 87
        Consola.consolaFrame.setVisible(false);
86 88
        this.setLayout(null);
87
        this.setSize(470, 175);
89
        this.setSize(width, height);
88 90
        this.add(getBDetails(), null);
89 91
        this.add(getPDescription(), null);
90 92
        this.add(Consola.consolaFrame, null);
......
168 170
    public WindowInfo getWindowInfo() {
169 171
        WindowInfo info = new WindowInfo(WindowInfo.MODELESSDIALOG |
170 172
                WindowInfo.ICONIFIABLE);
173
        info.setWidth(width);
174
        info.setHeight(height);
171 175
        info.setTitle(PluginServices.getText(this, "titulo_consola"));
172 176

  
173 177
        return info;

Also available in: Unified diff