mirror of
https://code.briarproject.org/briar/briar.git
synced 2026-02-21 07:09:56 +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() {
|
private void share() {
|
||||||
scroll.setVisibility(GONE);
|
|
||||||
progress.setVisibility(VISIBLE);
|
|
||||||
new AsyncTask<Void, Void, Map<String, String>>() {
|
new AsyncTask<Void, Void, Map<String, String>>() {
|
||||||
|
|
||||||
protected Map<String, String> doInBackground(Void... args) {
|
protected Map<String, String> doInBackground(Void... args) {
|
||||||
@@ -373,8 +371,6 @@ public class TestingActivity extends BriarActivity implements OnClickListener {
|
|||||||
}
|
}
|
||||||
p.flush();
|
p.flush();
|
||||||
p.close();
|
p.close();
|
||||||
scroll.setVisibility(VISIBLE);
|
|
||||||
progress.setVisibility(GONE);
|
|
||||||
sendEmail(Uri.fromFile(temp));
|
sendEmail(Uri.fromFile(temp));
|
||||||
} catch(IOException e) {
|
} catch(IOException e) {
|
||||||
if(LOG.isLoggable(WARNING))
|
if(LOG.isLoggable(WARNING))
|
||||||
|
|||||||
Reference in New Issue
Block a user