From 11a57efafb2798078f8227445557f6384c077bbd Mon Sep 17 00:00:00 2001 From: Zach Fox Date: Fri, 20 Jan 2017 13:44:29 -0800 Subject: [PATCH] Fix it! --- interface/resources/qml/hifi/Pal.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/interface/resources/qml/hifi/Pal.qml b/interface/resources/qml/hifi/Pal.qml index 51ef6e17e3..50f1808f94 100644 --- a/interface/resources/qml/hifi/Pal.qml +++ b/interface/resources/qml/hifi/Pal.qml @@ -426,7 +426,7 @@ Rectangle { if (selected) { table.selection.clear(); // for now, no multi-select table.selection.select(userIndex); - table.positionViewAtRow(userIndex, ListView.Visible); + table.positionViewAtRow(userIndex, ListView.Beginning); } else { table.selection.deselect(userIndex); }