From e355e54d2436a42b6d3f9f8c0f292508114d4fd4 Mon Sep 17 00:00:00 2001 From: Angela Mazzurco Date: Wed, 26 Jul 2017 19:07:47 +0200 Subject: [PATCH] Implement avatar cache in a proper way --- retroshare-qml-app/src/ChatCache.qml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/retroshare-qml-app/src/ChatCache.qml b/retroshare-qml-app/src/ChatCache.qml index 31826b141..07d9f48de 100644 --- a/retroshare-qml-app/src/ChatCache.qml +++ b/retroshare-qml-app/src/ChatCache.qml @@ -141,6 +141,13 @@ QtObject } } + } + + property QtObject facesCache: QtObject + { + id: facesCache + property var iconCache: ({}) + property var callbackCache: ({}) }