no message

This commit is contained in:
2024-10-09 23:37:58 +03:00
parent eb278676cc
commit d1ffab1e70
299 changed files with 1844 additions and 1539 deletions

View File

@@ -1,5 +1,5 @@
package Common.Visual.Trees;
import Common.CurrentAnchestor;
import Common.Current_;
import Common.Visual.Selectable;
import javax.swing.tree.DefaultMutableTreeNode;
@@ -9,7 +9,7 @@ public class SelectableTree extends DataTree {
}
@Override
public void LeftMouseAction1() {
Object element = CurrentAnchestor.get(getCurrent());
Object element = Current_.get(getCurrent());
if ((element instanceof Selectable)) {
((Selectable) element).SwitchSelection();
updateUI();