summaryrefslogtreecommitdiff
path: root/src/widgets
diff options
context:
space:
mode:
author2 * r + 2 * t <61896496+soramanew@users.noreply.github.com>2025-01-19 19:00:07 +1100
committer2 * r + 2 * t <61896496+soramanew@users.noreply.github.com>2025-01-19 19:00:07 +1100
commit611f2c766fbd916c758727e9899957df2339af8b (patch)
tree5483ea26408e1cf273768a028996a49228aae88a /src/widgets
parentlauncher: reload subcommand (diff)
downloadcaelestia-shell-611f2c766fbd916c758727e9899957df2339af8b.tar.gz
caelestia-shell-611f2c766fbd916c758727e9899957df2339af8b.tar.bz2
caelestia-shell-611f2c766fbd916c758727e9899957df2339af8b.zip
session screen
Switch from wlogout
Diffstat (limited to 'src/widgets')
-rw-r--r--src/widgets/popupwindow.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/widgets/popupwindow.ts b/src/widgets/popupwindow.ts
index 335260d..bbc6053 100644
--- a/src/widgets/popupwindow.ts
+++ b/src/widgets/popupwindow.ts
@@ -13,6 +13,7 @@ export default class PopupWindow extends Widget.Window {
super({
keymode: Astal.Keymode.ON_DEMAND,
exclusivity: Astal.Exclusivity.IGNORE,
+ borderWidth: 20, // To allow shadow, cause if not it gets cut off
...props,
visible: false,
application: App,
@@ -24,7 +25,6 @@ export default class PopupWindow extends Widget.Window {
return props.onKeyPressEvent?.(self, event);
},
- borderWidth: 20, // To allow shadow, cause if not it gets cut off
});
}