projects
/
platform
/
core
/
uifw
/
dali-adaptor.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
4590f62
)
[4.0] Call RequestUpdateOnce after pause callback
53/149253/1
author
Heeyong Song
<heeyong.song@samsung.com>
Tue, 12 Sep 2017 03:00:22 +0000
(12:00 +0900)
committer
Heeyong Song
<heeyong.song@samsung.com>
Tue, 12 Sep 2017 03:00:22 +0000
(12:00 +0900)
Change-Id: I77cc51526cefac53438704958706e5d247731a34
adaptors/common/adaptor-impl.cpp
patch
|
blob
|
history
diff --git
a/adaptors/common/adaptor-impl.cpp
b/adaptors/common/adaptor-impl.cpp
index
09cc801
..
79228f2
100644
(file)
--- a/
adaptors/common/adaptor-impl.cpp
+++ b/
adaptors/common/adaptor-impl.cpp
@@
-304,6
+304,9
@@
void Adaptor::Pause()
mThreadController->Pause();
mCore->Suspend();
mState = PAUSED;
+
+ // Process remained events and rendering in the update thread
+ RequestUpdateOnce();
}
}