diff options
| author | campbeb <bpcampbell@gmail.com> | 2013-06-08 10:13:47 -1000 |
|---|---|---|
| committer | campbeb <bpcampbell@gmail.com> | 2013-06-08 10:13:47 -1000 |
| commit | e2aaeb6d783c0e8204034435ea59305ca3a27aad (patch) | |
| tree | 2fec0b9263e52374e222a72f17147f25b239bc7d /main/src/cgeo/geocaching/activity | |
| parent | c6a3b41c0afbf0eff9ea6683a9f836793e4cb12f (diff) | |
| download | cgeo-e2aaeb6d783c0e8204034435ea59305ca3a27aad.zip cgeo-e2aaeb6d783c0e8204034435ea59305ca3a27aad.tar.gz cgeo-e2aaeb6d783c0e8204034435ea59305ca3a27aad.tar.bz2 | |
Fix #2527 - Apply dialog theme to dialogs
Ensures the dialog is properly positioned on the screen
and treated like a dialog instead of a semi-floating window
Fixes #2527
Diffstat (limited to 'main/src/cgeo/geocaching/activity')
| -rw-r--r-- | main/src/cgeo/geocaching/activity/Progress.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/main/src/cgeo/geocaching/activity/Progress.java b/main/src/cgeo/geocaching/activity/Progress.java index 34e7623..68ac272 100644 --- a/main/src/cgeo/geocaching/activity/Progress.java +++ b/main/src/cgeo/geocaching/activity/Progress.java @@ -54,7 +54,7 @@ public class Progress { dialog = new CustomProgressDialog(context); } else { - dialog = new ProgressDialog(context); + dialog = new ProgressDialog(context, ActivityMixin.getDialogTheme()); } dialog.setTitle(title); dialog.setMessage(message); |
