|
@@ -471,7 +471,12 @@ public class MainActivity extends ActionBarActivity implements
|
|
|
});
|
|
|
|
|
|
|
|
|
- MDTintHelper.setCheckBoxTint(checkbox, getResources().getColor(R.color.material_pink_500));
|
|
|
+ int widgetColor = ThemeSingleton.get().widgetColor;
|
|
|
+ MDTintHelper.setCheckBoxTint(checkbox,
|
|
|
+ widgetColor == 0 ? getResources().getColor(R.color.material_pink_500) : widgetColor);
|
|
|
+
|
|
|
+ MDTintHelper.setEditTextTint(passwordInput,
|
|
|
+ widgetColor == 0 ? getResources().getColor(R.color.material_pink_500) : widgetColor);
|
|
|
|
|
|
dialog.show();
|
|
|
positiveAction.setEnabled(false);
|