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:
parent
aa531aa1e0
commit
8e71d0d8e8
1 changed files with 7 additions and 0 deletions
|
@ -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;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue