diff options
| author | 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> | 2025-01-30 21:31:19 +1100 |
|---|---|---|
| committer | 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> | 2025-01-30 21:31:19 +1100 |
| commit | ad22dbdfebbb0def2ec2d8e2c91469e9a9e4fdf7 (patch) | |
| tree | 826e715ae0aa7d4c5bcd29d76421a211b920dca1 /src/modules/popdowns/index.tsx | |
| parent | sideright: fix assertion row != -1 (diff) | |
| download | caelestia-shell-ad22dbdfebbb0def2ec2d8e2c91469e9a9e4fdf7.tar.gz caelestia-shell-ad22dbdfebbb0def2ec2d8e2c91469e9a9e4fdf7.tar.bz2 caelestia-shell-ad22dbdfebbb0def2ec2d8e2c91469e9a9e4fdf7.zip | |
sideleft: create popdown window
Diffstat (limited to 'src/modules/popdowns/index.tsx')
| -rw-r--r-- | src/modules/popdowns/index.tsx | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/modules/popdowns/index.tsx b/src/modules/popdowns/index.tsx index c4f4664..fb9abf7 100644 --- a/src/modules/popdowns/index.tsx +++ b/src/modules/popdowns/index.tsx @@ -2,6 +2,7 @@ import BluetoothDevices from "./bluetoothdevices"; import Media from "./media"; import Networks from "./networks"; import Notifications from "./notifications"; +import SideLeft from "./sideleft"; import SideRight from "./sideright"; import Updates from "./updates"; @@ -12,6 +13,7 @@ export default () => { <Networks />; <Media />; <SideRight />; + <SideLeft />; return null; }; |