diff options
author | bobzel <zzzman@gmail.com> | 2025-03-21 19:24:06 -0400 |
---|---|---|
committer | bobzel <zzzman@gmail.com> | 2025-03-21 19:24:06 -0400 |
commit | bc308b888f41e8789f1b9f522ced46e68e726862 (patch) | |
tree | 6e1747536982c0dbc953b1ac7f47e8e1d0f56e58 /src/client/views/PropertiesView.tsx | |
parent | 7e4d793eaa7e5b6b564355a11fa02a5611645f20 (diff) |
from last
Diffstat (limited to 'src/client/views/PropertiesView.tsx')
-rw-r--r-- | src/client/views/PropertiesView.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/views/PropertiesView.tsx b/src/client/views/PropertiesView.tsx index c72f958fc..b95553c4e 100644 --- a/src/client/views/PropertiesView.tsx +++ b/src/client/views/PropertiesView.tsx @@ -891,7 +891,7 @@ export class PropertiesView extends ObservableReactComponent<PropertiesViewProps } }); } - @computed get colorStk() { return StrCast(this.selectedStrokes.lastElement()?.$olor); } // prettier-ignore + @computed get colorStk() { return StrCast(this.selectedStrokes.lastElement()?.$color); } // prettier-ignore set colorStk(value) { this.selectedStrokes.forEach(doc => { doc.$color = value || undefined; |