Update of /cvsroot/jcommander/plugins/org.jcommander.ui.filepanel/src/org/jcommander/ui/filepanel/performers
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv27928/src/org/jcommander/ui/filepanel/performers
Modified Files:
Utils.java
Log Message:
Made tool windows resizable
Index: Utils.java
===================================================================
RCS file: /cvsroot/jcommander/plugins/org.jcommander.ui.filepanel/src/org/jcommander/ui/filepanel/performers/Utils.java,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -d -r1.4 -r1.5
*** Utils.java 3 May 2005 19:51:11 -0000 1.4
--- Utils.java 13 Apr 2006 07:55:09 -0000 1.5
***************
*** 21,25 ****
*/
public static Shell createOperationDialog(Shell parent, TabMediator mediator) {
! Shell tmpShell = new Shell(parent, SWT.TOOL | SWT.TITLE | SWT.CLOSE);
// SWT.TITLE | SWT.CLOSE | SWT.MIN | SWT.MAX | SWT.BORDER | SWT.RESIZE);
--- 21,25 ----
*/
public static Shell createOperationDialog(Shell parent, TabMediator mediator) {
! Shell tmpShell = new Shell(parent, SWT.TOOL | SWT.RESIZE | SWT.TITLE | SWT.CLOSE);
// SWT.TITLE | SWT.CLOSE | SWT.MIN | SWT.MAX | SWT.BORDER | SWT.RESIZE);
|