From de94c5f651b40a11e1a130b0879371dfab7d2c26 Mon Sep 17 00:00:00 2001 From: Adeel Kazmi Date: Tue, 29 May 2018 12:49:39 +0100 Subject: [PATCH] Fixed SVACE error in WindowBaseEcoreX Change-Id: Ic7e96d0ad5917628290143ddb4c6a13f5fdf019a --- dali/internal/window-system/ubuntu-x11/window-base-ecore-x.cpp | 2 ++ 1 file changed, 2 insertions(+) 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 { -- 2.7.4