Skip to content
Snippets Groups Projects
Commit ef52fbd7 authored by Leon Tappe's avatar Leon Tappe 🔥
Browse files

hide logpress dialog before starting other dialogs

parent 0cdfa729
No related branches found
No related tags found
No related merge requests found
......@@ -53,15 +53,15 @@ class _ColorsPageState extends State<ColorsPage> {
ListTile(
title: const Text('Invertiert duplizieren'),
onTap: () async {
await _onDuplicateInverted(e);
Navigator.of(context).pop();
await _onDuplicateInverted(e);
},
),
ListTile(
title: const Text('Löschen'),
onTap: () async {
await _onDeleteColor(e);
Navigator.of(context).pop();
await _onDeleteColor(e);
},
),
],
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment