diff options
Diffstat (limited to 'src/utils/widgets.ts')
| -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); + } +} |