Code Review
/
apps
/
agl-service-windowmanager-2017.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
review
|
tree
raw
(from parent 1:
2699c89
)
Merge "Change the sequence how signals are emitted"
author
Jan-Simon Moeller
<jsmoeller@linuxfoundation.org>
Tue, 31 Oct 2017 15:20:32 +0000
(15:20 +0000)
committer
Gerrit Code Review
<gerrit@automotivelinux.org>
Tue, 31 Oct 2017 15:20:32 +0000
(15:20 +0000)
src/app.cpp
patch
|
blob
|
history
diff --git
a/src/app.cpp
b/src/app.cpp
index
75df8d7
..
8aa7547
100644
(file)
--- a/
src/app.cpp
+++ b/
src/app.cpp
@@
-639,8
+639,8
@@
void App::activate(int id) {
this->controller->surfaces[id]->set_visibility(1);
char const *label =
this->lookup_name(id).value_or("unknown-name").c_str();
- this->emit_activated(label);
this->emit_visible(label);
+ this->emit_activated(label);
}
}