From 942378bebeb8c7a616676e0969fea0d667f47b24 Mon Sep 17 00:00:00 2001 From: Richard Underhill Date: Tue, 23 Jun 2015 09:31:51 +0100 Subject: [PATCH] Fix for signals not being received on an Atlas upload Change-Id: I84d3a3d637496b584dc616c0423e0fad4e420a21 Signed-off-by: Richard Underhill --- dali/internal/event/images/atlas-impl.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/dali/internal/event/images/atlas-impl.cpp b/dali/internal/event/images/atlas-impl.cpp index 1f05a8f..99665ec 100644 --- a/dali/internal/event/images/atlas-impl.cpp +++ b/dali/internal/event/images/atlas-impl.cpp @@ -202,6 +202,7 @@ void Atlas::AllocateAtlas() if( !mTicket ) { mTicket = mResourceClient.AllocateTexture( mWidth, mHeight, mPixelFormat ); + mTicket->AddObserver( *this ); mImageFactory.RegisterForContextRecovery( this ); } } -- 2.7.4