mirror of
				https://github.com/commons-app/apps-android-commons.git
				synced 2025-10-31 06:43:56 +01:00 
			
		
		
		
	fixing issue#2131: same description for all photos in multiple uploads (#2132)
* fixing same description in multiple uploads issue(#2131) * Remove setNewDescription method
This commit is contained in:
		
							parent
							
								
									525eb9ab50
								
							
						
					
					
						commit
						1d80cbaac9
					
				
					 1 changed files with 6 additions and 3 deletions
				
			
		|  | @ -174,7 +174,10 @@ class DescriptionsAdapter extends RecyclerView.Adapter<DescriptionsAdapter.ViewH | |||
|                     descItemEditText.setCompoundDrawablesWithIntrinsicBounds(null, null, null, null); | ||||
|                 } | ||||
| 
 | ||||
|                 descItemEditText.addTextChangedListener(new AbstractTextWatcher(description::setDescriptionText)); | ||||
|                 descItemEditText.addTextChangedListener(new AbstractTextWatcher(descriptionText->{ | ||||
|                     descriptions.get(position - 1).setDescriptionText(descriptionText); | ||||
|                 })); | ||||
| 
 | ||||
|                 descItemEditText.setOnFocusChangeListener((v, hasFocus) -> { | ||||
|                     if (!hasFocus) { | ||||
|                         ViewUtil.hideKeyboard(v); | ||||
|  | @ -238,8 +241,8 @@ class DescriptionsAdapter extends RecyclerView.Adapter<DescriptionsAdapter.ViewH | |||
|                     ((SpinnerLanguagesAdapter) adapterView.getAdapter()).selectedLangCode = languageCode; | ||||
|                 } | ||||
| 
 | ||||
|                     @Override | ||||
|                     public void onNothingSelected(AdapterView<?> adapterView) { | ||||
|                 @Override | ||||
|                 public void onNothingSelected(AdapterView<?> adapterView) { | ||||
| 
 | ||||
|                 } | ||||
|             }); | ||||
|  |  | |||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue
	
	 sp2710
						sp2710