Allow changing and removing of links

This commit is contained in:
M66B
2020-03-26 20:52:03 +01:00
parent 1e5bf48912
commit 8f00303717
3 changed files with 37 additions and 12 deletions

View File

@@ -87,6 +87,12 @@ public class FragmentDialogLink extends FragmentDialogBase {
}
})
.setNegativeButton(android.R.string.cancel, null)
.setNeutralButton(R.string.title_reset, new DialogInterface.OnClickListener() {
@Override
public void onClick(DialogInterface dialog, int which) {
sendResult(RESULT_OK);
}
})
.create();
}
}