From b8638b6491f39e4a2f8800c1b18ebb459ec502af Mon Sep 17 00:00:00 2001 From: Harley Acheson Date: Wed, 7 Oct 2020 08:59:13 -0700 Subject: UI: Fix Incorrect Workspace Tab Sizing Changes Workspace tabs so that the text size and tab width are both set by style.widget.points. Differential Revision: https://developer.blender.org/D9108 Reviewed by Julian Eisel --- source/blender/editors/interface/interface_templates.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source') diff --git a/source/blender/editors/interface/interface_templates.c b/source/blender/editors/interface/interface_templates.c index f61941cd2bc..6b11e727b66 100644 --- a/source/blender/editors/interface/interface_templates.c +++ b/source/blender/editors/interface/interface_templates.c @@ -1229,7 +1229,7 @@ static void template_ID_tabs(const bContext *C, LISTBASE_FOREACH (LinkData *, link, &ordered) { ID *id = link->data; - const int name_width = UI_fontstyle_string_width(&style->widgetlabel, id->name + 2); + const int name_width = UI_fontstyle_string_width(&style->widget, id->name + 2); const int but_width = name_width + UI_UNIT_X; uiButTab *tab = (uiButTab *)uiDefButR_prop(block, -- cgit v1.2.3