mirror of
https://code.briarproject.org/briar/briar.git
synced 2026-02-13 03:09:04 +01:00
Don't show progress spinner when sharing debugging info, it's confusing.
This commit is contained in:
@@ -351,8 +351,6 @@ public class TestingActivity extends BriarActivity implements OnClickListener {
|
||||
}
|
||||
|
||||
private void share() {
|
||||
scroll.setVisibility(GONE);
|
||||
progress.setVisibility(VISIBLE);
|
||||
new AsyncTask<Void, Void, Map<String, String>>() {
|
||||
|
||||
protected Map<String, String> doInBackground(Void... args) {
|
||||
@@ -373,8 +371,6 @@ public class TestingActivity extends BriarActivity implements OnClickListener {
|
||||
}
|
||||
p.flush();
|
||||
p.close();
|
||||
scroll.setVisibility(VISIBLE);
|
||||
progress.setVisibility(GONE);
|
||||
sendEmail(Uri.fromFile(temp));
|
||||
} catch(IOException e) {
|
||||
if(LOG.isLoggable(WARNING))
|
||||
|
||||
Reference in New Issue
Block a user