aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/app.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/app.cpp b/src/app.cpp
index a034fac..6ab58a4 100644
--- a/src/app.cpp
+++ b/src/app.cpp
@@ -422,9 +422,9 @@ char const *App::activate_surface(char const *drawing_name) {
if (this->state.sub == -1) {
if (can_split) {
if (this->state.main != *surface_id) {
- this->surface_set_layout_split(this->state.main,
- this->state.sub = *surface_id);
- this->activate(this->state.sub);
+ this->surface_set_layout_split(this->state.main, *surface_id);
+ this->activate(*surface_id);
+ this->state.sub = *surface_id;
}
} else {
this->surface_set_layout_full(*surface_id);