View | Details | Raw Unified | Return to bug 168866
Collapse All | Expand All

(-)src/org/eclipse/gef/editparts/ScalableRootEditPart.java (-1 / +3 lines)
Lines 1-5 Link Here
1
/*******************************************************************************
1
/*******************************************************************************
2
 * Copyright (c) 2000, 2005 IBM Corporation and others.
2
 * Copyright (c) 2000, 2008 IBM Corporation and others.
3
 * All rights reserved. This program and the accompanying materials
3
 * All rights reserved. This program and the accompanying materials
4
 * are made available under the terms of the Eclipse Public License v1.0
4
 * are made available under the terms of the Eclipse Public License v1.0
5
 * which accompanies this distribution, and is available at
5
 * which accompanies this distribution, and is available at
Lines 17-22 Link Here
17
import org.eclipse.draw2d.IFigure;
17
import org.eclipse.draw2d.IFigure;
18
import org.eclipse.draw2d.Layer;
18
import org.eclipse.draw2d.Layer;
19
import org.eclipse.draw2d.LayeredPane;
19
import org.eclipse.draw2d.LayeredPane;
20
import org.eclipse.draw2d.MarginBorder;
20
import org.eclipse.draw2d.ScalableLayeredPane;
21
import org.eclipse.draw2d.ScalableLayeredPane;
21
import org.eclipse.draw2d.StackLayout;
22
import org.eclipse.draw2d.StackLayout;
22
import org.eclipse.draw2d.Viewport;
23
import org.eclipse.draw2d.Viewport;
Lines 106-111 Link Here
106
	extends Layer
107
	extends Layer
107
{
108
{
108
	FeedbackLayer() {
109
	FeedbackLayer() {
110
        setBorder(new MarginBorder(10, 10, 10, 10));
109
		setEnabled(false);
111
		setEnabled(false);
110
	}
112
	}
111
	/**
113
	/**
(-)src/org/eclipse/gef/editparts/FreeformGraphicalRootEditPart.java (-1 / +3 lines)
Lines 1-5 Link Here
1
/*******************************************************************************
1
/*******************************************************************************
2
 * Copyright (c) 2000, 2005 IBM Corporation and others.
2
 * Copyright (c) 2000, 2008 IBM Corporation and others.
3
 * All rights reserved. This program and the accompanying materials
3
 * All rights reserved. This program and the accompanying materials
4
 * are made available under the terms of the Eclipse Public License v1.0
4
 * are made available under the terms of the Eclipse Public License v1.0
5
 * which accompanies this distribution, and is available at
5
 * which accompanies this distribution, and is available at
Lines 19-24 Link Here
19
import org.eclipse.draw2d.FreeformViewport;
19
import org.eclipse.draw2d.FreeformViewport;
20
import org.eclipse.draw2d.IFigure;
20
import org.eclipse.draw2d.IFigure;
21
import org.eclipse.draw2d.LayeredPane;
21
import org.eclipse.draw2d.LayeredPane;
22
import org.eclipse.draw2d.MarginBorder;
22
import org.eclipse.draw2d.geometry.Dimension;
23
import org.eclipse.draw2d.geometry.Dimension;
23
import org.eclipse.draw2d.geometry.Point;
24
import org.eclipse.draw2d.geometry.Point;
24
25
Lines 249-254 Link Here
249
	extends FreeformLayer
250
	extends FreeformLayer
250
{
251
{
251
	FeedbackLayer() {
252
	FeedbackLayer() {
253
	    setBorder(new MarginBorder(10, 10, 10, 10));
252
		setEnabled(false);
254
		setEnabled(false);
253
	}
255
	}
254
}
256
}

Return to bug 168866