quick action add favorite bugs fixes

This commit is contained in:
Rosty 2016-12-30 15:15:32 +02:00
parent efb24f7c03
commit cde0be4de1
3 changed files with 8 additions and 9 deletions

View file

@ -163,7 +163,7 @@ public class FavoritePointEditorFragment extends PointEditorFragment {
return;
}
if (builder != null) {
if (builder != null && !autoFill) {
builder.setPositiveButton(R.string.shared_string_ok, new DialogInterface.OnClickListener() {
@Override
public void onClick(DialogInterface dialog, int which) {

View file

@ -360,16 +360,15 @@ public class QuickActionFactory {
private void fillGroupParams(View root, String name, int color) {
if (color == 0) color = R.color.color_favorite;
((AutoCompleteTextViewEx) root.findViewById(R.id.category_edit)).setText(name);
getParams().put(KEY_CATEGORY_NAME, name);
if (color > 0) {
((ImageView) root.findViewById(R.id.category_image)).setColorFilter(color);
getParams().put(KEY_CATEGORY_NAME, name);
getParams().put(KEY_CATEGORY_COLOR, String.valueOf(color));
}
}
}
public static class ShowHideFavoritesAction extends QuickAction {