ReloadWidget() has problem when Widget is terminated abnormally
if it is terminated abnormally, the Renderers are deleted, and touch event does not work properly because of this.
To avoid this problem, i changed ReloadWidget().
Change-Id: I3f5c815bf4596730d8b51dc8a1550edb6f1cc34d
if( mReloadFlag == false )
{
CloseRemoteSurface();
- RemoveWidgetRenderer();
}
break;
}
void WidgetView::ReloadWidget()
{
- // Only try to reload widget when flag is set
- if( !mReloadFlag )
- {
- return;
- }
-
std::string text;
text = GetContentInfo();
if( text == mContentInfo )