From 7377161ba3193b8d66a9f1462e2c3f5b9c5873f3 Mon Sep 17 00:00:00 2001 From: taoky Date: Sun, 14 Jan 2024 19:24:49 +0800 Subject: [PATCH] Fix markup error of lblTitle --- source/gx/tilix/terminal/terminal.d | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/gx/tilix/terminal/terminal.d b/source/gx/tilix/terminal/terminal.d index 01f92086..b6ae21c3 100644 --- a/source/gx/tilix/terminal/terminal.d +++ b/source/gx/tilix/terminal/terminal.d @@ -1274,7 +1274,7 @@ private: string title = _overrideTitle.length == 0 ? gsProfile.getString(SETTINGS_PROFILE_TITLE_KEY) : _overrideTitle; title = getDisplayText(title); if (title != lastTitle) { - lblTitle.setMarkup(title); + lblTitle.setText(title); lastTitle = title; } // Need to always emit title since other titles could be tracking variables that terminal isn't