- Currently window is shown after reset once appcontrol
is received. Due to this sometimes old contents are
visible first then new contents are rendered
- If the app is reset on app-control then do show the
window right away. Rather the window will be shown
once frame rendered is received
Change-Id: Ice201a6c6ff35430186abcad917af767fb1ccdaf
Signed-off-by: Prathmesh <prathmesh.m@samsung.com>
if (!verbose_mode_ && appcontrol->data(kVerboseKey) == "true") {
verbose_mode_ = true;
}
- window_->Active();
+
+ // If app was reset then show window after new frame
+ // is rendered. Else old page will be displayed
+ if (!do_reset)
+ window_->Active();
}
void WebApplication::SendAppControlEvent() {