From b1a7670336d3d5f6f70285e766475a3415c13d12 Mon Sep 17 00:00:00 2001 From: Marcus Fritzsch Date: Tue, 12 Sep 2017 11:29:29 +0200 Subject: [PATCH] app: do not inline assignments Signed-off-by: Marcus Fritzsch --- src/app.cpp | 6 +++--- 1 file 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); -- 2.16.6