summaryrefslogtreecommitdiffstats
path: root/src/app.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/app.cpp')
-rw-r--r--src/app.cpp5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/app.cpp b/src/app.cpp
index 26dc5f6..f76ebbd 100644
--- a/src/app.cpp
+++ b/src/app.cpp
@@ -386,7 +386,8 @@ char const *App::activate_surface(char const *drawing_name) {
// Set all others invisible
for (auto &i : this->controller->surfaces) {
auto &si = this->controller->sprops[i.second->id];
- if (si.visibility != 0 && int(si.id) != this->layers.main_surface) {
+ if (si.visibility != 0 &&
+ int(si.id) != this->layers.main_surface) {
this->deactivate(i.second->id);
}
}
@@ -526,6 +527,7 @@ binding_api::result_type binding_api::activate_surface(
logdebug("%s drawing_name %s", __func__, drawing_name);
auto r = this->app->activate_surface(drawing_name);
if (r != nullptr) {
+ logdebug("%s failed with error: %s", __func__, r);
return Err<json_object *>(r);
}
return Ok(json_object_new_object());
@@ -535,6 +537,7 @@ binding_api::result_type binding_api::deactivate_surface(char const* drawing_nam
logdebug("%s drawing_name %s", __func__, drawing_name);
auto r = this->app->deactivate_surface(drawing_name);
if (r != nullptr) {
+ logdebug("%s failed with error: %s", __func__, r);
return Err<json_object *>(r);
}
return Ok(json_object_new_object());