1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-24 01:15:29 +02:00

bug 273250 - Disassembly view should have LTR orientation

This commit is contained in:
Vivian Kong 2009-04-28 20:11:12 +00:00
parent aa531aa1e0
commit 8e71d0d8e8

View file

@ -66,6 +66,7 @@ import org.eclipse.jface.viewers.ISelection;
import org.eclipse.jface.viewers.IStructuredSelection;
import org.eclipse.jface.viewers.StructuredSelection;
import org.eclipse.jface.viewers.Viewer;
import org.eclipse.swt.SWT;
import org.eclipse.swt.custom.StyleRange;
import org.eclipse.swt.custom.StyledText;
import org.eclipse.swt.events.MouseEvent;
@ -971,4 +972,10 @@ public class DisassemblyView extends AbstractDebugEventHandlerView
}
return super.getAdapter(adapter);
}
@Override
public int getOrientation() {
//bug 273250 - Disassembly view should have LTR orientation
return SWT.LEFT_TO_RIGHT;
}
}