aboutsummaryrefslogtreecommitdiff
path: root/sway/tree/view.c
diff options
context:
space:
mode:
authorKonstantin Pospelov <kupospelov@gmail.com>2018-06-03 00:32:18 +0300
committerKonstantin Pospelov <kupospelov@gmail.com>2018-06-03 00:32:18 +0300
commite6baac4297e448deb126b75e9281c4871c71b691 (patch)
tree7893f26f27271d3583a388fa635e72aef6e2f089 /sway/tree/view.c
parentfb932cf8477120ee9fd9db37be1cd26a603fe0a3 (diff)
Fix view title update order
This commit fixes the function call order to make sure that the title texture is updated using the relevant global font size.
Diffstat (limited to 'sway/tree/view.c')
-rw-r--r--sway/tree/view.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/sway/tree/view.c b/sway/tree/view.c
index 79441d49..c9c82405 100644
--- a/sway/tree/view.c
+++ b/sway/tree/view.c
@@ -790,8 +790,10 @@ void view_update_title(struct sway_view *view, bool force) {
view->swayc->formatted_title = NULL;
}
container_calculate_title_height(view->swayc);
- container_update_title_textures(view->swayc);
config_update_font_height(false);
+
+ // Update title after the global font height is updated
+ container_update_title_textures(view->swayc);
}
static bool find_by_mark_iterator(struct sway_container *con,