From 425209189d24979b2698c530844112e3b5d29448 Mon Sep 17 00:00:00 2001 From: Alexander Ivash Date: Sat, 7 Jul 2018 03:03:24 +0300 Subject: [PATCH] reduce precision --- interface/resources/qml/hifi/avatarapp/AvatarsModel.qml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/interface/resources/qml/hifi/avatarapp/AvatarsModel.qml b/interface/resources/qml/hifi/avatarapp/AvatarsModel.qml index 6c2219c427..931a041747 100644 --- a/interface/resources/qml/hifi/avatarapp/AvatarsModel.qml +++ b/interface/resources/qml/hifi/avatarapp/AvatarsModel.qml @@ -126,8 +126,9 @@ ListModel { var v2 = o2[prop]; - if(v1 !== v2 && Math.round(v1 * 1000) != Math.round(v2 * 1000)) + if(v1 !== v2 && Math.round(v1 * 500) != Math.round(v2 * 500)) { return false; + } } }