diff --git a/CHANGELOG.md b/CHANGELOG.md index 7f5aed7086..c52cda6066 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -14,7 +14,7 @@ - [Numeric Widget does not accept non-numeric input][10457]. This is to prevent node being completely altered by accidental code put to the widget. - [Redesigned "record control" panel][10509]. Now it contains more intuitive - "refresh" and "run workflow" buttons. + "refresh" and "write all" buttons. - [Warning messages do not obscure visualization buttons][10546]. [10433]: https://github.com/enso-org/enso/pull/10443 diff --git a/app/gui2/src/components/CircularMenu.vue b/app/gui2/src/components/CircularMenu.vue index 075af08bf4..4eda7d6329 100644 --- a/app/gui2/src/components/CircularMenu.vue +++ b/app/gui2/src/components/CircularMenu.vue @@ -92,7 +92,7 @@ function readableBinding(binding: keyof (typeof graphBindings)['bindings']) { icon="record" class="slot7 record" data-testid="toggleRecord" - title="Record" + title="Write Always" :modelValue="props.isRecordingOverridden" @update:modelValue="emit('update:isRecordingOverridden', $event)" /> diff --git a/app/gui2/src/components/RecordControl.vue b/app/gui2/src/components/RecordControl.vue index e8767805ee..8bc5f30e70 100644 --- a/app/gui2/src/components/RecordControl.vue +++ b/app/gui2/src/components/RecordControl.vue @@ -18,7 +18,7 @@ const project = useProjectStore()