no message

This commit is contained in:
2024-10-17 20:31:06 +03:00
parent 3b5bffe998
commit 7b56eae371
13 changed files with 24 additions and 38 deletions

View File

@@ -34,7 +34,7 @@ public class VersionsTree extends DataTree {
return RendererProjectVersion.class;
}
@Override
public Current getCurrent() {
public Current currentName() {
return Current.Version;
}
public void SelectCurrentProject() {
@@ -48,7 +48,7 @@ public class VersionsTree extends DataTree {
public void LeftMouseAction1() {
if (Global.versions_multiselection) {
// только если есть режим выбора версий.
Object element = Global.mainModule.get(getCurrent());
Object element = Global.mainModule.get(currentName());
if ((element instanceof Selectable)) {
((Selectable) element).SwitchSelection();
updateUI();