DeInitilize elm during app exit 97/193897/1
authorprathmesh.m <prathmesh.m@samsung.com>
Tue, 27 Nov 2018 09:35:27 +0000 (15:05 +0530)
committerprathmesh.m <prathmesh.m@samsung.com>
Tue, 27 Nov 2018 09:35:27 +0000 (15:05 +0530)
- Deinit elm as its no more required

Change-Id: Ie432f0c479bdec4fcb5ef1bc5b6f12bdb4decb68
Signed-off-by: prathmesh.m <prathmesh.m@samsung.com>
atom/browser/browser.cc

index d429a0a261a25abe6ac5c501ab11438e7871410f..1e0d82d2ccd78f613a46e45ec5e8e39abed1d69c 100644 (file)
@@ -253,6 +253,12 @@ void Browser::OnWindowAllClosed() {
     for (BrowserObserver& observer : observers_)
       observer.OnWindowAllClosed();
   }
+#if defined(OS_TIZEN)
+  // This is called during app exit.
+  // Deinit elm as its no more required.
+  elm_exit();
+  elm_shutdown();
+#endif
 }
 
 #if defined(OS_TIZEN)