1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-06-09 18:56:02 +02:00

bug 168185: [terminal] text entry fields in connection properties should be wider

https://bugs.eclipse.org/bugs/show_bug.cgi?id=168185
Remember the size of the dialog
This commit is contained in:
Michael Scharf 2006-12-16 05:20:10 +00:00
parent bf7e0820ef
commit ce78696d0c

View file

@ -17,6 +17,7 @@
package org.eclipse.tm.terminal.internal.view;
import org.eclipse.jface.dialogs.Dialog;
import org.eclipse.jface.dialogs.IDialogSettings;
import org.eclipse.swt.SWT;
import org.eclipse.swt.events.SelectionAdapter;
import org.eclipse.swt.events.SelectionEvent;
@ -144,4 +145,7 @@ class TerminalSettingsDlg extends Dialog {
Control[] pages=fPageBook.getChildren();
fPageBook.showPage(pages[fSelectedConnector]);
}
protected IDialogSettings getDialogBoundsSettings() {
return TerminalViewPlugin.getDefault().getDialogSettings();
}
}