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

onboarding
Christian Pauly 4 years ago
parent 988a691eeb
commit 3b268dc53d

@ -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 {

Loading…
Cancel
Save