This repository was archived by the owner on Jul 22, 2024. It is now read-only.
File tree 3 files changed +3
-2
lines changed
com/google/classyshark/gui/panel
3 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -12,4 +12,5 @@ public class IconSchemes {
12
12
public static final String NEXT_ICON_PATH = ROOT_PATH + "ic_next" + EXTENSION ;
13
13
public static final String OPEN_ICON_PATH = ROOT_PATH + "ic_open" + EXTENSION ;
14
14
public static final String EXPORT_ICON_PATH = ROOT_PATH + "ic_export" + EXTENSION ;
15
+ public static final String MAPPING_ICON_PATH = ROOT_PATH + "ic_mappings" + EXTENSION ;
15
16
}
Original file line number Diff line number Diff line change @@ -202,7 +202,7 @@ public void actionPerformed(ActionEvent e) {
202
202
private JButton buildMappingsButton () {
203
203
204
204
JButton result =
205
- new JButton (new ImageIcon (getClass ().getResource (IconSchemes .EXPORT_ICON_PATH )));
205
+ new JButton (new ImageIcon (getClass ().getResource (IconSchemes .MAPPING_ICON_PATH )));
206
206
207
207
result .addActionListener (new ActionListener () {
208
208
@ Override
@@ -211,7 +211,7 @@ public void actionPerformed(ActionEvent e) {
211
211
}
212
212
});
213
213
214
- result .setToolTipText ("Mappings " );
214
+ result .setToolTipText ("Import Proguard mapping file " );
215
215
result .setBorderPainted (false );
216
216
result .setEnabled (true );
217
217
You can’t perform that action at this time.
0 commit comments