diff options
author | Mehek Jethani <53710923+mehekj@users.noreply.github.com> | 2023-02-22 16:41:00 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-02-22 16:41:00 -0500 |
commit | e269e624599802ab4553cd5dc9ab3b660e7700fc (patch) | |
tree | 2dc60081e496241a31f93674eed41b3d76eac7ed /src | |
parent | 3e93857b4dfdc09a4dce7ec12ca0dbc60b727fb1 (diff) | |
parent | 7cd43c51fe13b3fb0f76d026a16caee5bc320f4e (diff) |
Merge pull request #158 from brown-dash/uiupdate-sarah
Uiupdate sarah
Diffstat (limited to 'src')
-rw-r--r-- | src/.DS_Store | bin | 10244 -> 10244 bytes | |||
-rw-r--r-- | src/client/views/PropertiesButtons.tsx | 6 |
2 files changed, 3 insertions, 3 deletions
diff --git a/src/.DS_Store b/src/.DS_Store Binary files differindex 4ed785983..717b68f3e 100644 --- a/src/.DS_Store +++ b/src/.DS_Store diff --git a/src/client/views/PropertiesButtons.tsx b/src/client/views/PropertiesButtons.tsx index 65a950711..a152b4948 100644 --- a/src/client/views/PropertiesButtons.tsx +++ b/src/client/views/PropertiesButtons.tsx @@ -114,7 +114,7 @@ export class PropertiesButtons extends React.Component<{}, {}> { 'View All', '_fitContentsToBox', on => `${on ? "Don't" : 'Do'} fit content to container visible area`, - on => 'eye' + on => 'object-group' ); } // this implments a container pattern by marking the targetDoc (collection) as an inPlace container, @@ -222,7 +222,7 @@ export class PropertiesButtons extends React.Component<{}, {}> { 'FreezeThumb', '_thumb-frozen', on => `${on ? 'Freeze' : 'Unfreeze'} thumbnail`, - on => 'arrows-alt-h', + on => 'snowflake', (dv, doc) => { if (doc['thumb-frozen']) doc['thumb-frozen'] = undefined; else { @@ -242,7 +242,7 @@ export class PropertiesButtons extends React.Component<{}, {}> { 'Snap\xA0Lines', 'showSnapLines', on => `Display snapping lines when objects are dragged`, - on => 'border-all', + on => 'th', undefined, true ); |