parent
6f6f298a3e
commit
e4ec35ecb4
|
@ -4,7 +4,7 @@ plugins {
|
|||
}
|
||||
|
||||
group 'io.zhile.research.intellij'
|
||||
version '2.0.2'
|
||||
version '2.0.3'
|
||||
|
||||
sourceCompatibility = 1.7
|
||||
targetCompatibility = 1.7
|
||||
|
@ -29,6 +29,8 @@ intellij {
|
|||
|
||||
patchPluginXml {
|
||||
changeNotes """<pre>
|
||||
Release v2.0.3
|
||||
1. more friendly "Reload" icon
|
||||
Release v2.0.2
|
||||
1. sync prefs manually
|
||||
Release v2.0.1
|
||||
|
|
|
@ -40,7 +40,7 @@
|
|||
<component id="382d3" class="javax.swing.JButton" binding="btnReload">
|
||||
<constraints/>
|
||||
<properties>
|
||||
<text value="⟳ Reload"/>
|
||||
<text value="Reload"/>
|
||||
</properties>
|
||||
</component>
|
||||
<component id="7f8d9" class="javax.swing.JButton" binding="btnReset">
|
||||
|
|
|
@ -47,6 +47,7 @@ public class MainForm {
|
|||
lstMain.setModel(listModel);
|
||||
reloadRecordItems();
|
||||
|
||||
btnReload.setIcon(AllIcons.Actions.Refresh);
|
||||
btnReload.addActionListener(new AbstractAction() {
|
||||
@Override
|
||||
public void actionPerformed(ActionEvent e) {
|
||||
|
|
Loading…
Reference in New Issue