From a56e6879a86bac968248af47bc7cc39e84cea9ae Mon Sep 17 00:00:00 2001 From: georgweiss Date: Tue, 8 Jul 2025 08:59:39 +0200 Subject: [PATCH] Disconnected read-back value: fix rendering of initial value --- .../saveandrestore/ui/snapshot/SnapshotController.java | 1 - 1 file changed, 1 deletion(-) diff --git a/app/save-and-restore/app/src/main/java/org/phoebus/applications/saveandrestore/ui/snapshot/SnapshotController.java b/app/save-and-restore/app/src/main/java/org/phoebus/applications/saveandrestore/ui/snapshot/SnapshotController.java index b36d4b372b..e7bbef4720 100644 --- a/app/save-and-restore/app/src/main/java/org/phoebus/applications/saveandrestore/ui/snapshot/SnapshotController.java +++ b/app/save-and-restore/app/src/main/java/org/phoebus/applications/saveandrestore/ui/snapshot/SnapshotController.java @@ -1506,7 +1506,6 @@ private void showSnapshotInTable() { tableEntry.setConfigPv(entry.getConfigPv()); tableEntry.setSnapshotValue(entry.getValue(), 0); tableEntry.setStoredReadbackValue(entry.getReadbackValue(), 0); - tableEntry.setReadbackValue(entry.getReadbackValue()); if (entry.getValue() == null || entry.getValue().equals(VDisconnectedData.INSTANCE)) { tableEntry.setActionResult(ActionResult.FAILED); }