Switch to side-by-side view

--- a/src/qtgui/ssearch_w.cpp
+++ b/src/qtgui/ssearch_w.cpp
@@ -364,7 +364,10 @@
             tr("Autophrase is unset but it was set for stored query"));
     }
     setSearchString(QString::fromUtf8(fxml.text.c_str()));
-    searchTypCMB->setCurrentIndex(prefs.ssearchTyp);
+    // We used to use prefs.ssearchTyp here. Not too sure why?
+    // Minimize user surprise factor ? Anyway it seems cleaner to
+    // restore the saved search type
+    searchTypCMB->setCurrentIndex(fxml.mode);
     return true;
 }