From 503e77d817ada919531a1d902184693cb427c5a4 Mon Sep 17 00:00:00 2001 From: Johannes Unterguggenberger Date: Thu, 30 Nov 2023 17:08:02 +0100 Subject: [PATCH] Renamed set_font_mode -> set_custom_font --- auto_vk_toolkit/include/imgui_manager.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/auto_vk_toolkit/include/imgui_manager.hpp b/auto_vk_toolkit/include/imgui_manager.hpp index fd0e8f5e..69464d0d 100644 --- a/auto_vk_toolkit/include/imgui_manager.hpp +++ b/auto_vk_toolkit/include/imgui_manager.hpp @@ -100,7 +100,7 @@ namespace avk /** Configure imgui_manager which font to use. * @param aPathToTtfFont Path to a custom TTF font file to be used, or empty for using ImGui's bundled default font. */ - void set_font_mode(std::string aPathToTtfFont = {}) { + void set_custom_font(std::string aPathToTtfFont = {}) { mCustomTtfFont = std::move(aPathToTtfFont); }