Browse Source

Attach long-press action to report bug

vishnukvmd 2 years ago
parent
commit
685a834e86
1 changed files with 1 additions and 1 deletions
  1. 1 1
      lib/ui/settings/support_section_widget.dart

+ 1 - 1
lib/ui/settings/support_section_widget.dart

@@ -83,7 +83,7 @@ class SupportSectionWidget extends StatelessWidget {
           onTap: () async {
             await sendLogs(context, S.of(context).reportBug, bugsEmail);
           },
-          onDoubleTap: () async {
+          onLongPress: () async {
             final zipFilePath = await getZippedLogsFile(context);
             await shareLogs(context, bugsEmail, zipFilePath);
           },