Skip to content

Commit

Permalink
Minor GUI fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
Marko Topolnik committed Nov 20, 2013
1 parent 4323edb commit 60a79f8
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/com/ingemark/requestage/plugin/ui/RequestAgeView.java
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ public void createPartControl(Composite p) {
statsParent.notifyListeners(EVT_REPORT, null);
}};
reportAction.setImageDescriptor(requestAgePlugin().imageDescriptor("report.gif"));
reportAction.setEnabled(false);
reportAction.setEnabled(true);
stopAction.setEnabled(false);
final IToolBarManager toolbar = getViewSite().getActionBars().getToolBarManager();
toolbar.add(stopAction);
Expand Down Expand Up @@ -246,6 +246,7 @@ private Composite tab(TabFolder tabs, String title) {
final GridLayout gridLayout = new GridLayout(2, false);
gridLayout.marginHeight = gridLayout.marginWidth = 0;
tabPane.setLayout(gridLayout);
tabPane.setBackground(tabPane.getDisplay().getSystemColor(SWT.COLOR_WIDGET_LIGHT_SHADOW));
return tabPane;
}

Expand Down

0 comments on commit 60a79f8

Please sign in to comment.