From cbd23146f06cb753332cc6d2bbca74cbd7efd953 Mon Sep 17 00:00:00 2001 From: Percs <83934299+Percslol@users.noreply.github.com> Date: Thu, 26 Sep 2024 12:14:09 -0500 Subject: [PATCH] fix wm split bar being presented over windows --- apps/fsapp.app/index.mjs | 2 +- documentation/appdevt.md | 2 +- src/AliceWM.css | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/apps/fsapp.app/index.mjs b/apps/fsapp.app/index.mjs index f3d350ef..c7ea469d 100644 --- a/apps/fsapp.app/index.mjs +++ b/apps/fsapp.app/index.mjs @@ -5,8 +5,8 @@ self.mime = await anura.import("npm:mime"); self.currentlySelected = []; self.clipboard = []; self.removeAfterPaste = false; -self.fs = anura.fs; self.filePicker = false; +self.fs = anura.fs; self.Buffer = Filer.Buffer; self.sh = new anura.fs.Shell(); diff --git a/documentation/appdevt.md b/documentation/appdevt.md index 49c78f30..69e9917c 100644 --- a/documentation/appdevt.md +++ b/documentation/appdevt.md @@ -169,7 +169,7 @@ if (instance.manifest.marketplace) { dreamland.js is a reactive JSX-inspired rendering library with no virtual dom and no build step. You can find the source code [here](https://github.com/MercuryWorkshop/dreamlandjs) and the documentation [here](https://dreamland.js.org/). -AnuraOS itself uses dreamland for the desktop environment and core system apps, and you can use it in your apps as well. To include dreamland in your app, you can add the following to the `head` section of your `index.html` file: +AnuraOS itself uses dreamland for the desktop environment and core system apps, and you can use it in your apps as well. To include dreamland in your app without a bundler, you can add the following to the `head` section of your `index.html` file: ```html diff --git a/src/AliceWM.css b/src/AliceWM.css index 174a34e0..ec1e16da 100644 --- a/src/AliceWM.css +++ b/src/AliceWM.css @@ -76,7 +76,7 @@ width: 8px; position: fixed; transition: background 0.2s; - z-index: 9999; + z-index: 0; cursor: ew-resize; display: flex; align-items: center;