Restore modal views when switching outline 2

Don't avoid bringing the outline to front when the activeForm is modal.
This leads to MessageBoxes/FileChoosers... not to get rendered correctly
when coexisting with a modal view.
Like this, modal views are not automatically brought up front when
switching outlines. But this is the default behavior for non-modal views
as well.

265232

Change-Id: I90bc128c8095ef5698be8a8d30ba407473bd6c86
diff --git a/org.eclipse.scout.rt.ui.html/src/main/js/scout/desktop/Desktop.js b/org.eclipse.scout.rt.ui.html/src/main/js/scout/desktop/Desktop.js
index 81b702a..cdd343a 100644
--- a/org.eclipse.scout.rt.ui.html/src/main/js/scout/desktop/Desktop.js
+++ b/org.eclipse.scout.rt.ui.html/src/main/js/scout/desktop/Desktop.js
@@ -728,11 +728,6 @@
     return;
   }
 
-  // Check if the activeForm blocks the current outline
-  if (this.activeForm && this.activeForm.modal && scout.isOneOf(this.activeForm.displayParent, this, this.outline)) {
-    return;
-  }
-
   this._setInBackground(false);
   this._setOutlineActivated();