Skip to content
This repository was archived by the owner on Feb 9, 2022. It is now read-only.

Commit 16d99b7

Browse files
ExplvExplv
authored andcommitted
Fix loop task saving. Closes #57
1 parent da98267 commit 16d99b7

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

AIO/src/org/aio/gui/Gui.java

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -195,6 +195,10 @@ private boolean validate(final Container container) {
195195

196196
Component[] comps = container.getComponents();
197197
for (Component component : comps) {
198+
if (!component.isVisible()) {
199+
continue;
200+
}
201+
198202
if (component instanceof JComponent) {
199203
JComponent jComponent = (JComponent) component;
200204
if (jComponent.getInputVerifier() != null) {

AIO/src/org/aio/script/AIO.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
import java.util.List;
2626
import java.util.Optional;
2727

28-
@ScriptManifest(author = "Explv", name = "Explv's AIO v3.8", info = "AIO", version = 3.8, logo = "http://i.imgur.com/58Zz0fb.png")
28+
@ScriptManifest(author = "Explv", name = "Explv's AIO v3.9", info = "AIO", version = 3.9, logo = "http://i.imgur.com/58Zz0fb.png")
2929
public class AIO extends Script {
3030

3131
private Gui gui;

0 commit comments

Comments
 (0)