diff options
| author | bobzel <zzzman@gmail.com> | 2021-09-17 04:13:34 -0400 |
|---|---|---|
| committer | bobzel <zzzman@gmail.com> | 2021-09-17 04:13:34 -0400 |
| commit | a75ccf3bd6c0029116d46436bd5a9d956b6e04e7 (patch) | |
| tree | 21fbbcc851a08365c92cd0caf4730220219e3c24 /src/client/views/AntimodeMenu.tsx | |
| parent | 582c709a2b08e2f6c12793121d0c8b264ddc2ca2 (diff) | |
fixed not inadvertently moving webBoxes after creating a marquee adn then clicking in the webBox, then clicking outside it.
Diffstat (limited to 'src/client/views/AntimodeMenu.tsx')
| -rw-r--r-- | src/client/views/AntimodeMenu.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/views/AntimodeMenu.tsx b/src/client/views/AntimodeMenu.tsx index fe6d39ca4..0f1fc6b69 100644 --- a/src/client/views/AntimodeMenu.tsx +++ b/src/client/views/AntimodeMenu.tsx @@ -16,7 +16,7 @@ export abstract class AntimodeMenu<T extends AntimodeMenuProps> extends React.Co @observable protected _top: number = -300; @observable protected _left: number = -300; - @observable protected _opacity: number = 1; + @observable protected _opacity: number = 0; @observable protected _transitionProperty: string = "opacity"; @observable protected _transitionDuration: string = "0.5s"; @observable protected _transitionDelay: string = ""; |
