diff --git a/src/org/ntlab/traceDebugger/TraceDebuggerPerspective.java b/src/org/ntlab/traceDebugger/TraceDebuggerPerspective.java index fdb48de..a7309c2 100644 --- a/src/org/ntlab/traceDebugger/TraceDebuggerPerspective.java +++ b/src/org/ntlab/traceDebugger/TraceDebuggerPerspective.java @@ -11,22 +11,14 @@ // �G�f�B�^�̏ꏊ���擾 String editorArea = layout.getEditorArea(); -// // ����ɃR�[���X�^�b�N�̃r���[��z�u -// IFolderLayout topLeft = layout.createFolder("topLeft", IPageLayout.TOP, 0.35f, editorArea); -// topLeft.addView(CallStackView.ID); -// -// // �E��Ƀu���[�N�|�C���g�̃r���[��z�u -// IFolderLayout topRight = layout.createFolder("topRight", IPageLayout.RIGHT, 0.5f, "topLeft"); -// topRight.addView(BreakPointView.ID); -// -// // �E��ɕϐ��̃r���[��z�u -// IFolderLayout topRight2 = layout.createFolder("topRight2", IPageLayout.RIGHT, 0.5f, "topLeft"); -// topRight2.addView(VariableView.ID); - // �E�Ƀu���[�N�|�C���g�̃r���[��z�u IFolderLayout right = layout.createFolder("right", IPageLayout.RIGHT, 0.5f, editorArea); right.addView(BreakPointView.ID); + // �E���Ƀg���[�X�|�C���g�̃r���[��z�u + IFolderLayout rightBottom = layout.createFolder("rightBottom", IPageLayout.BOTTOM, 0.5f, "right"); + rightBottom.addView(TracePointsView.ID); + // �E��ɕϐ��̃r���[��z�u IFolderLayout topRight = layout.createFolder("topRight", IPageLayout.TOP, 0.25f, editorArea); topRight.addView(VariableView.ID);