Status Messages/Errors now clear in Contrib Manager

This commit is contained in:
joelmoniz
2014-07-30 15:45:58 +04:00
parent 514385835e
commit 7a054cfdaf
3 changed files with 10 additions and 0 deletions

View File

@@ -45,6 +45,11 @@ class StatusPanel extends JLabel {
setText(message);
repaint();
}
void clear() {
setText("");
repaint();
}
}