diff options
| author | 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> | 2025-02-28 12:48:42 +1100 |
|---|---|---|
| committer | 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> | 2025-02-28 12:48:42 +1100 |
| commit | 5cf36b005814ee254271648691513d5361096649 (patch) | |
| tree | e8dea19f804586b07f6804b9bf2366d7303fb624 /src/utils | |
| parent | launcher: made search bar + mode switcher (diff) | |
| download | caelestia-shell-5cf36b005814ee254271648691513d5361096649.tar.gz caelestia-shell-5cf36b005814ee254271648691513d5361096649.tar.bz2 caelestia-shell-5cf36b005814ee254271648691513d5361096649.zip | |
launcher: apps mode
Diffstat (limited to 'src/utils')
| -rw-r--r-- | src/utils/widgets.ts | 7 |
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); + } +} |