Make vm state always accessible

This commit is contained in:
crschnick 2024-09-17 16:05:06 +00:00
parent 51ef955996
commit 7364d13f66
3 changed files with 15 additions and 0 deletions

View file

@ -33,6 +33,11 @@ public class StorePauseAction implements ActionProvider {
public String getIcon(DataStoreEntryRef<PauseableStore> store) {
return "mdi2p-pause";
}
@Override
public boolean requiresValidStore() {
return false;
}
};
}

View file

@ -33,6 +33,11 @@ public class StoreStartAction implements ActionProvider {
public String getIcon(DataStoreEntryRef<StartableStore> store) {
return "mdi2p-play";
}
@Override
public boolean requiresValidStore() {
return false;
}
};
}

View file

@ -33,6 +33,11 @@ public class StoreStopAction implements ActionProvider {
public String getIcon(DataStoreEntryRef<StoppableStore> store) {
return "mdi2s-stop";
}
@Override
public boolean requiresValidStore() {
return false;
}
};
}