aboutsummaryrefslogtreecommitdiffstats
path: root/main/src/cgeo/geocaching/ui/dialog/CustomProgressDialog.java
diff options
context:
space:
mode:
authorrsudev <rasch@munin-soft.de>2013-02-14 23:02:12 +0100
committerrsudev <rasch@munin-soft.de>2013-02-14 23:02:12 +0100
commit0dbe6e3f884a1e4a5008fd97e8a91422bdf1f4a7 (patch)
tree52550aab886f45af7ae573fbe0fc5ffd2a32b789 /main/src/cgeo/geocaching/ui/dialog/CustomProgressDialog.java
parent7106273249ed67a1e95ce8e5c1acf49b583ce190 (diff)
downloadcgeo-0dbe6e3f884a1e4a5008fd97e8a91422bdf1f4a7.zip
cgeo-0dbe6e3f884a1e4a5008fd97e8a91422bdf1f4a7.tar.gz
cgeo-0dbe6e3f884a1e4a5008fd97e8a91422bdf1f4a7.tar.bz2
Fixes #2445, Light theme broken
Added theme application to some dialogs Forced dark theme on custom AlertDialog views, as these are always dark.
Diffstat (limited to 'main/src/cgeo/geocaching/ui/dialog/CustomProgressDialog.java')
-rw-r--r--main/src/cgeo/geocaching/ui/dialog/CustomProgressDialog.java3
1 files changed, 2 insertions, 1 deletions
diff --git a/main/src/cgeo/geocaching/ui/dialog/CustomProgressDialog.java b/main/src/cgeo/geocaching/ui/dialog/CustomProgressDialog.java
index 93d4b87..c2b722c 100644
--- a/main/src/cgeo/geocaching/ui/dialog/CustomProgressDialog.java
+++ b/main/src/cgeo/geocaching/ui/dialog/CustomProgressDialog.java
@@ -1,5 +1,6 @@
package cgeo.geocaching.ui.dialog;
+import cgeo.geocaching.activity.ActivityMixin;
import cgeo.geocaching.utils.Log;
import android.app.ProgressDialog;
@@ -18,7 +19,7 @@ import java.lang.reflect.Method;
public class CustomProgressDialog extends ProgressDialog {
public CustomProgressDialog(Context context) {
- super(context);
+ super(context, ActivityMixin.getTheme());
}
@Override