fix: incorrect isInitialized implementation.

This commit is contained in:
huanghongxun
2021-08-29 06:28:13 +08:00
parent d5e2bc455f
commit 1a0fd11e83

View File

@@ -260,7 +260,7 @@ public interface TabControl {
}
public boolean isInitialized() {
return getNode() == null;
return getNode() != null;
}
public boolean initializeIfNeeded() {