forked from organicmaps/organicmaps
[ios] Fix “Suggested changes sent” toast message layout
Fixes https://github.com/organicmaps/organicmaps/issues/6876 Signed-off-by: Oleg Montak <oleg.montak@gmail.com>
This commit is contained in:
parent
f90500eff4
commit
916a050d36
1 changed files with 4 additions and 6 deletions
|
@ -3,7 +3,6 @@
|
|||
#import "MWMAuthorizationCommon.h"
|
||||
#import "MWMButtonCell.h"
|
||||
#import "MWMCuisineEditorViewController.h"
|
||||
#import "MWMDropDown.h"
|
||||
#import "MWMEditorAddAdditionalNameTableViewCell.h"
|
||||
#import "MWMEditorAdditionalNameTableViewCell.h"
|
||||
#import "MWMEditorAdditionalNamesHeader.h"
|
||||
|
@ -238,7 +237,7 @@ void registerCellsForTableView(std::vector<MWMEditorCellID> const & cells, UITab
|
|||
case osm::Editor::SaveResult::NothingWasChanged:
|
||||
[self.navigationController popToRootViewControllerAnimated:YES];
|
||||
if (haveNote)
|
||||
[self showDropDown];
|
||||
[self showNotesQueuedToast];
|
||||
break;
|
||||
case osm::Editor::SaveResult::SavedSuccessfully:
|
||||
osm_auth_ios::AuthorizationSetNeedCheck(YES);
|
||||
|
@ -251,10 +250,9 @@ void registerCellsForTableView(std::vector<MWMEditorCellID> const & cells, UITab
|
|||
}
|
||||
}
|
||||
|
||||
- (void)showDropDown
|
||||
- (void)showNotesQueuedToast
|
||||
{
|
||||
MWMDropDown * dd = [[MWMDropDown alloc] initWithSuperview:[MapViewController sharedController].controlsView];
|
||||
[dd showWithMessage:L(@"editor_edits_sent_message")];
|
||||
[[MWMToast toastWithText:L(@"editor_edits_sent_message")] show];
|
||||
}
|
||||
|
||||
#pragma mark - Headers
|
||||
|
@ -972,7 +970,7 @@ void registerCellsForTableView(std::vector<MWMEditorCellID> const & cells, UITab
|
|||
GetFramework().CreateNote(self->m_mapObject, osm::Editor::NoteProblemType::PlaceDoesNotExist,
|
||||
additional);
|
||||
[self goBack];
|
||||
[self showDropDown];
|
||||
[self showNotesQueuedToast];
|
||||
}];
|
||||
};
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue