aboutsummaryrefslogtreecommitdiff
path: root/src/client/views/OverlayView.tsx
diff options
context:
space:
mode:
authormonoguitari <113245090+monoguitari@users.noreply.github.com>2023-08-23 13:15:31 -0400
committermonoguitari <113245090+monoguitari@users.noreply.github.com>2023-08-23 13:15:31 -0400
commitaab4148a23a6505f103564fff305ac4c97b64479 (patch)
tree47c238b185ae7aaefb635ba1f78f23c42f8c7093 /src/client/views/OverlayView.tsx
parentf710353318543a43349944f9c0a96ce3f3388270 (diff)
Basic implementation of micahels branching trail on master
Diffstat (limited to 'src/client/views/OverlayView.tsx')
-rw-r--r--src/client/views/OverlayView.tsx1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/client/views/OverlayView.tsx b/src/client/views/OverlayView.tsx
index 339507f65..e838473d2 100644
--- a/src/client/views/OverlayView.tsx
+++ b/src/client/views/OverlayView.tsx
@@ -146,6 +146,7 @@ export class OverlayView extends React.Component {
@action
addWindow(contents: JSX.Element, options: OverlayElementOptions): OverlayDisposer {
+ console.log("adding window");
const remove = action(() => {
const index = this._elements.indexOf(contents);
if (index !== -1) this._elements.splice(index, 1);