summaryrefslogtreecommitdiff
path: root/src/utils/widgets.ts
diff options
context:
space:
mode:
author2 * r + 2 * t <61896496+soramanew@users.noreply.github.com>2025-02-28 12:48:42 +1100
committer2 * r + 2 * t <61896496+soramanew@users.noreply.github.com>2025-02-28 12:48:42 +1100
commit5cf36b005814ee254271648691513d5361096649 (patch)
treee8dea19f804586b07f6804b9bf2366d7303fb624 /src/utils/widgets.ts
parentlauncher: made search bar + mode switcher (diff)
downloadcaelestia-shell-5cf36b005814ee254271648691513d5361096649.tar.gz
caelestia-shell-5cf36b005814ee254271648691513d5361096649.tar.bz2
caelestia-shell-5cf36b005814ee254271648691513d5361096649.zip
launcher: apps mode
Diffstat (limited to 'src/utils/widgets.ts')
-rw-r--r--src/utils/widgets.ts7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/utils/widgets.ts b/src/utils/widgets.ts
index 9802263..7b1eb5c 100644
--- a/src/utils/widgets.ts
+++ b/src/utils/widgets.ts
@@ -73,3 +73,10 @@ export class Calendar extends astalify(Gtk.Calendar) {
super(props as any);
}
}
+
+@register()
+export class FlowBox extends astalify(Gtk.FlowBox) {
+ constructor(props: ConstructProps<FlowBox, Gtk.FlowBox.ConstructorProps>) {
+ super(props as any);
+ }
+}