diff options
author | Sean Leonard <meanderingcode@aetherislands.net> | 2013-07-10 11:20:33 -0600 |
---|---|---|
committer | Sean Leonard <meanderingcode@aetherislands.net> | 2013-07-19 22:18:10 -0600 |
commit | 5edc2af535d177edaeda97523a04c6f73fad26a4 (patch) | |
tree | ecb52c38518a83faa03c2708a0e8f22bae57b87d | |
parent | 6f9cb39e79ff97bcd5e0635cb67f9a8f23f2b486 (diff) |
Fix config error dialog missing call to show()
-rw-r--r-- | src/se/leap/leapclient/Dashboard.java | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/se/leap/leapclient/Dashboard.java b/src/se/leap/leapclient/Dashboard.java index 3a50ad1e..4c9c28dd 100644 --- a/src/se/leap/leapclient/Dashboard.java +++ b/src/se/leap/leapclient/Dashboard.java @@ -106,7 +106,8 @@ public class Dashboard extends Activity implements LogInDialog.LogInDialogInterf prefsEdit.remove(ConfigHelper.PROVIDER_KEY).commit(); finish(); } - }); + }) + .show(); } /** |