Revert "[Tizen] indicator : disable indicator" 71/178471/1
authorHeeyong Song <heeyong.song@samsung.com>
Thu, 10 May 2018 05:05:06 +0000 (14:05 +0900)
committerHeeyong Song <heeyong.song@samsung.com>
Thu, 10 May 2018 05:05:09 +0000 (14:05 +0900)
This reverts commit 06959880e75adc6d13f7adc04736220ed379a599.

Change-Id: I860f71953546485fe1f025d21cb8aa35b08c4930

dali/internal/window-system/tizen-wayland/ecore-wl2/window-impl-ecore-wl2.cpp

index 269eb1a..4c68f02 100644 (file)
@@ -475,9 +475,6 @@ void Window::ShowIndicator( Dali::Window::IndicatorVisibleMode visibleMode )
 
     mIndicatorVisible = visibleMode;
 
-    //temp code TODO : need to re-imple dali indicator for EFL 1.20
-    mIndicatorVisible = Dali::Window::INVISIBLE;
-
     if ( mIndicatorVisible == Dali::Window::VISIBLE )
     {
       // when the indicator is visible, set proper mode for indicator server according to bg mode
@@ -539,8 +536,7 @@ void Window::SetClass(std::string name, std::string klass)
 
 Window::Window()
 : mSurface( NULL ),
-  //temp code TODO : need to re-imple dali indicator for EFL 1.20
-  mIndicatorVisible( Dali::Window::INVISIBLE ),
+  mIndicatorVisible( Dali::Window::VISIBLE ),
   mIndicatorIsShown( false ),
   mShowRotatedIndicatorOnClose( false ),
   mStarted( false ),
@@ -633,10 +629,6 @@ void Window::Initialize(const PositionSize& positionSize, const std::string& nam
 
 void Window::DoShowIndicator( Dali::Window::WindowOrientation lastOrientation )
 {
-  // temp code TODO : to implementation for EFL 1.20
-  if ( mIndicatorVisible == Dali::Window::INVISIBLE )
-    return;
-
   if( mIndicator == NULL )
   {
     if( mIndicatorVisible != Dali::Window::INVISIBLE )
@@ -985,9 +977,7 @@ void Window::RotationDone( int orientation, int width, int height )
 
 void Window::SetIndicatorVisibleMode( Dali::Window::IndicatorVisibleMode mode )
 {
-  // temp code TODO : need to re-imple dali indicator for EFL 1.20
-  //mIndicatorVisible = mode;
-  mIndicatorVisible = Dali::Window::INVISIBLE ;
+  mIndicatorVisible = mode;
 }
 
 unsigned int Window::GetSupportedAuxiliaryHintCount() const