dismiss snackbar when executing pending action
This commit is contained in:
		
							parent
							
								
									76fba4c697
								
							
						
					
					
						commit
						23af9183ba
					
				| @ -136,15 +136,6 @@ public class ConversationsOverviewFragment extends XmppFragment { | |||||||
| 			boolean isMuc = swipedConversation.peek().getMode() == Conversation.MODE_MULTI; | 			boolean isMuc = swipedConversation.peek().getMode() == Conversation.MODE_MULTI; | ||||||
| 			int title = isMuc ? R.string.title_undo_swipe_out_muc : R.string.title_undo_swipe_out_conversation; | 			int title = isMuc ? R.string.title_undo_swipe_out_muc : R.string.title_undo_swipe_out_conversation; | ||||||
| 
 | 
 | ||||||
| 			pendingActionHelper.push(() -> { |  | ||||||
| 				Conversation c = swipedConversation.pop(); |  | ||||||
| 				if(c != null){ |  | ||||||
| 					if (!c.isRead() && c.getMode() == Conversation.MODE_SINGLE) { |  | ||||||
| 						return; |  | ||||||
| 					} |  | ||||||
| 					activity.xmppConnectionService.archiveConversation(c); |  | ||||||
| 				} |  | ||||||
| 			}); |  | ||||||
| 			final Snackbar snackbar = Snackbar.make(binding.list, title, 5000) | 			final Snackbar snackbar = Snackbar.make(binding.list, title, 5000) | ||||||
| 					.setAction(R.string.undo, v -> { | 					.setAction(R.string.undo, v -> { | ||||||
| 						pendingActionHelper.undo(); | 						pendingActionHelper.undo(); | ||||||
| @ -171,6 +162,20 @@ public class ConversationsOverviewFragment extends XmppFragment { | |||||||
| 							} | 							} | ||||||
| 						} | 						} | ||||||
| 					}); | 					}); | ||||||
|  | 
 | ||||||
|  | 			pendingActionHelper.push(() -> { | ||||||
|  | 				if (snackbar.isShownOrQueued()) { | ||||||
|  | 					snackbar.dismiss(); | ||||||
|  | 				} | ||||||
|  | 				Conversation c = swipedConversation.pop(); | ||||||
|  | 				if(c != null){ | ||||||
|  | 					if (!c.isRead() && c.getMode() == Conversation.MODE_SINGLE) { | ||||||
|  | 						return; | ||||||
|  | 					} | ||||||
|  | 					activity.xmppConnectionService.archiveConversation(c); | ||||||
|  | 				} | ||||||
|  | 			}); | ||||||
|  | 
 | ||||||
| 			ThemeHelper.fix(snackbar); | 			ThemeHelper.fix(snackbar); | ||||||
| 			snackbar.show(); | 			snackbar.show(); | ||||||
| 		} | 		} | ||||||
|  | |||||||
		Loading…
	
		Reference in New Issue
	
	Block a user
	 Daniel Gultsch
						Daniel Gultsch