diff options
author | Bob Zeleznik <zzzman@gmail.com> | 2019-10-18 15:24:28 -0400 |
---|---|---|
committer | Bob Zeleznik <zzzman@gmail.com> | 2019-10-18 15:24:28 -0400 |
commit | d18ed8aa5a06efff1d7a3db1c2c8240dfa3c393c (patch) | |
tree | 2176c538a9b7efab8242d2f55a01148da2cb8ebf | |
parent | 96960f20bb3a4f68dfd540425c778d9ad8ca067a (diff) |
fixed border rounding of floating icon buttons
-rw-r--r-- | src/client/documents/Documents.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/documents/Documents.ts b/src/client/documents/Documents.ts index b53549f7a..651662ded 100644 --- a/src/client/documents/Documents.ts +++ b/src/client/documents/Documents.ts @@ -203,7 +203,7 @@ export namespace Docs { }], [DocumentType.FONTICON, { layout: { view: FontIconBox }, - options: { width: 40, height: 40 }, + options: { width: 40, height: 40, borderRounding: "100%" }, }], [DocumentType.LINKFOLLOW, { layout: { view: LinkFollowBox } |