Skip to content

Commit

Permalink
Error log view is not activated by default for better usability
Browse files Browse the repository at this point in the history
  • Loading branch information
Yulin Wang committed Mar 1, 2016
1 parent 4c6f851 commit d561fb5
Showing 1 changed file with 7 additions and 4 deletions.
Original file line number Diff line number Diff line change
@@ -109,7 +109,9 @@ private void defineActions( IPageLayout layout )
addShowViewShortcut( layout, LibraryExplorerView.ID );
addShowViewShortcut( layout, IPageLayout.ID_PROP_SHEET );
addShowViewShortcut( layout, IPageLayout.ID_PROBLEM_VIEW );
addShowViewShortcut( layout, "org.eclipse.pde.runtime.LogView" ); //$NON-NLS-1$
// Error log view is not activated by default for better usability
// addShowViewShortcut( layout, "org.eclipse.pde.runtime.LogView" );
// //$NON-NLS-1$

layout.addPerspectiveShortcut( BIRT_REPORT_PERSPECTIVE );

@@ -183,9 +185,10 @@ private void defineLayout( IPageLayout layout )
addLayoutView( bottomRight,
IReportPerspectiveExtra.LAYOUT_BOTTOM_RIGHT,
IPageLayout.ID_PROBLEM_VIEW );
addLayoutView( bottomRight,
IReportPerspectiveExtra.LAYOUT_BOTTOM_RIGHT,
"org.eclipse.pde.runtime.LogView" ); //$NON-NLS-1$
// Error log view is not activated by default for better usability
// addLayoutView( bottomRight,
// IReportPerspectiveExtra.LAYOUT_BOTTOM_RIGHT,
// "org.eclipse.pde.runtime.LogView" ); //$NON-NLS-1$

if ( extra != null )
{

0 comments on commit d561fb5

Please sign in to comment.