diff --git a/client/streamstatswindow.ui b/client/streamstatswindow.ui
index 2ba52ca..121abd2 100644
--- a/client/streamstatswindow.ui
+++ b/client/streamstatswindow.ui
@@ -19,6 +19,9 @@
Qt::ActionsContextMenu
+
+ QAbstractItemView::SelectRows
+
Oops! We don't seem to have any stream statistics for the requested port(s)
diff --git a/client/xtableview.h b/client/xtableview.h
index 99ea3ae..c8f39d4 100644
--- a/client/xtableview.h
+++ b/client/xtableview.h
@@ -169,7 +169,8 @@ public slots:
for (int i = start; i < end; i++)
if (indexes.contains(model()->index(indexes.first().row(), i)))
text.append(model()->headerData(i, Qt::Horizontal)
- .toString()+"\t");;
+ .toString().replace('\n', ' ')
+ +"\t");;
text.append("\n");
}