feat(ags audio): add profiles config

This commit is contained in:
matt1432 2024-12-07 22:08:56 -05:00
commit bdc42a765e
3 changed files with 65 additions and 12 deletions
nixosModules/ags/config/widgets/misc

View file

@ -49,3 +49,14 @@ export class ProgressBar extends astalify(Gtk.ProgressBar) {
super(props as any);
}
}
@register()
export class ComboBoxText extends astalify(Gtk.ComboBoxText) {
constructor(props: ConstructProps<
ComboBoxText,
Gtk.ComboBoxText.ConstructorProps
> = {}) {
// eslint-disable-next-line @typescript-eslint/no-explicit-any
super(props as any);
}
}