fix: "Pick an image" button in emote settings doesn't do anything

This commit is contained in:
Christian Pauly 2021-05-22 09:29:07 +02:00
parent ebc598a0ae
commit e6be6849f7
1 changed files with 1 additions and 1 deletions

View File

@ -220,7 +220,7 @@ class _EmoteImagePickerState extends State<_EmoteImagePicker> {
Widget build(BuildContext context) { Widget build(BuildContext context) {
if (widget.controller.text == null || widget.controller.text.isEmpty) { if (widget.controller.text == null || widget.controller.text.isEmpty) {
return ElevatedButton( return ElevatedButton(
onPressed: () async {}, onPressed: () => widget.onPressed(widget.controller),
child: Text(L10n.of(context).pickImage), child: Text(L10n.of(context).pickImage),
); );
} else { } else {