Switch to side-by-side view

--- a/src/qtgui/rclm_idx.cpp
+++ b/src/qtgui/rclm_idx.cpp
@@ -303,7 +303,10 @@
         string cmd("touch ");
         string path = path_cat(theconfig->getConfDir(), "recoll.conf");
         cmd += path;
-        system(cmd.c_str());
+        int status;
+        if ((status = system(cmd.c_str()))) {
+            cerr << cmd << " failed with status " << status << endl;
+        }
     }
 }
 #else