Public rooms search: Made sure the room is no more selected when leaving the rooom page

This commit is contained in:
manuroe
2015-12-22 17:43:25 +01:00
parent 0caeb839c6
commit f2d847ea4d
3 changed files with 11 additions and 9 deletions
@@ -50,7 +50,12 @@
{
[super viewDidAppear:animated];
if (self.splitViewController && !self.splitViewController.isCollapsed)
// Release the current selected room (if any) except if the Room ViewController is still visible (see splitViewController.isCollapsed condition)
if (self.splitViewController && self.splitViewController.isCollapsed)
{
[[AppDelegate theDelegate].homeViewController closeSelectedRoom];
}
else
{
// In case of split view controller where the primary and secondary view controllers are displayed side-by-side onscreen,
// the selected room (if any) is highlighted.