mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-04-22 22:22:11 +02:00
Terminal: Fix Terminal view opens with horizontal scollbar
This commit is contained in:
parent
f91eb46553
commit
d522bbff3a
1 changed files with 2 additions and 8 deletions
|
@ -64,8 +64,8 @@ import org.eclipse.swt.events.KeyListener;
|
|||
import org.eclipse.swt.events.MouseAdapter;
|
||||
import org.eclipse.swt.events.MouseEvent;
|
||||
import org.eclipse.swt.graphics.Font;
|
||||
import org.eclipse.swt.layout.FillLayout;
|
||||
import org.eclipse.swt.layout.GridData;
|
||||
import org.eclipse.swt.layout.GridLayout;
|
||||
import org.eclipse.swt.widgets.Composite;
|
||||
import org.eclipse.swt.widgets.Control;
|
||||
import org.eclipse.swt.widgets.Display;
|
||||
|
@ -670,10 +670,7 @@ public class VT100TerminalControl implements ITerminalControlForText, ITerminalC
|
|||
// modifying the text in method TerminalVerifyKeyListener.verifyKey().
|
||||
|
||||
fWndParent=new Composite(parent,SWT.NONE);
|
||||
GridLayout layout=new GridLayout();
|
||||
layout.marginWidth=0;
|
||||
layout.marginHeight=0;
|
||||
layout.verticalSpacing=0;
|
||||
FillLayout layout=new FillLayout();
|
||||
fWndParent.setLayout(layout);
|
||||
|
||||
ITerminalTextDataSnapshot snapshot=fTerminalModel.makeSnapshot();
|
||||
|
@ -682,9 +679,6 @@ public class VT100TerminalControl implements ITerminalControlForText, ITerminalC
|
|||
ITextCanvasModel canvasModel=new PollingTextCanvasModel(snapshot);
|
||||
fCtlText=new TextCanvas(fWndParent,canvasModel,SWT.NONE,new TextLineRenderer(fCtlText,canvasModel));
|
||||
|
||||
|
||||
fCtlText.setLayoutData(new GridData(GridData.FILL_BOTH));
|
||||
fCtlText.setLayoutData(new GridData(SWT.FILL, SWT.FILL, true, true));
|
||||
fCtlText.addResizeHandler(new TextCanvas.ResizeListener() {
|
||||
public void sizeChanged(int lines, int columns) {
|
||||
fTerminalText.setDimensions(lines, columns);
|
||||
|
|
Loading…
Add table
Reference in a new issue