Clear the captcha input field when new captcha gets loaded.

captchafix
Florens Douwes 11 years ago
parent 8c8428965a
commit 39a249c653
  1. 4
      Clover/app/src/main/java/org/floens/chan/ui/fragment/ReplyFragment.java

@ -345,7 +345,8 @@ public class ReplyFragment extends DialogFragment {
* Set the picked image in the imageView. Sets the file in the draft. Call
* null on the file to empty the imageView.
*
* @param imagePath file to image to send or null to clear
* @param name the filename
* @param file the file
*/
private void setFile(final String name, final File file) {
draft.file = file;
@ -406,6 +407,7 @@ public class ReplyFragment extends DialogFragment {
gettingCaptcha = true;
captchaContainer.setView(null);
captchaInput.setText("");
String url = ChanUrls.getCaptchaChallengeUrl();

Loading…
Cancel
Save