Skip to content
This repository has been archived by the owner on Jul 22, 2024. It is now read-only.

Commit

Permalink
Merge pull request #80 from google/proguard-integ
Browse files Browse the repository at this point in the history
Proguard integ
  • Loading branch information
borisf committed Apr 16, 2016
2 parents ca334f8 + 5360e57 commit b71466e
Showing 1 changed file with 5 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ public Toolbar(final ToolbarController toolbarController) {
openBtn = buildOpenButton();
backBtn = buildBackButton();
viewBtn = buildViewButton();
//mappingBtn = buildMappingsButton();
mappingBtn = buildMappingsButton();
exportButton = buildExportButton();
recentArchivesBtn = buildRecentArchivesButton();
leftPanelToggleBtn = buildLeftPanelToggleButton();
Expand All @@ -62,7 +62,7 @@ public Toolbar(final ToolbarController toolbarController) {
add(backBtn);
add(viewBtn);
add(typingArea);
//add(mappingBtn);
add(mappingBtn);
add(exportButton);
add(recentArchivesBtn);

Expand Down Expand Up @@ -199,11 +199,10 @@ public void actionPerformed(ActionEvent e) {
return result;
}

/*
private JButton buildMappingsButton() {

JButton result = new JButton("#");
result.setFont(new Font("Menlo", Font.PLAIN, 18));
JButton result =
new JButton(new ImageIcon(getClass().getResource(IconSchemes.EXPORT_ICON_PATH)));

result.addActionListener(new ActionListener() {
@Override
Expand All @@ -212,15 +211,12 @@ public void actionPerformed(ActionEvent e) {
}
});

result.setToolTipText("Export");
result.setToolTipText("Mappings");
result.setBorderPainted(false);
result.setForeground(ColorScheme.FOREGROUND_YELLOW);
result.setBackground(ColorScheme.BLACK);
result.setEnabled(true);

return result;
}
*/

private JButton buildRecentArchivesButton() {
RecentArchivesButton result = new RecentArchivesButton();
Expand Down

0 comments on commit b71466e

Please sign in to comment.