From: Adeel Kazmi Date: Tue, 29 May 2018 11:49:39 +0000 (+0100) Subject: Fixed SVACE error in WindowBaseEcoreX X-Git-Tag: dali_1.3.27~1 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=refs%2Fchanges%2F41%2F180441%2F1;p=platform%2Fcore%2Fuifw%2Fdali-adaptor.git Fixed SVACE error in WindowBaseEcoreX Change-Id: Ic7e96d0ad5917628290143ddb4c6a13f5fdf019a --- diff --git a/dali/internal/window-system/ubuntu-x11/window-base-ecore-x.cpp b/dali/internal/window-system/ubuntu-x11/window-base-ecore-x.cpp index 5f92464..e4b5975 100644 --- a/dali/internal/window-system/ubuntu-x11/window-base-ecore-x.cpp +++ b/dali/internal/window-system/ubuntu-x11/window-base-ecore-x.cpp @@ -249,6 +249,7 @@ WindowBaseEcoreX::WindowBaseEcoreX( Dali::PositionSize positionSize, Any surface : mEcoreEventHandler(), mEcoreWindow( 0 ), mOwnSurface( false ), + mIsTransparent( false ), // Should only be set to true once we actually create a transparent window regardless of what isTransparent is. mRotationAppSet( false ) { Initialize( positionSize, surface, isTransparent ); @@ -920,6 +921,7 @@ void WindowBaseEcoreX::CreateWindow( PositionSize positionSize, bool isTranspare { // create 32 bit window mEcoreWindow = ecore_x_window_argb_new( 0, positionSize.x, positionSize.y, positionSize.width, positionSize.height ); + mIsTransparent = true; } else {