impr: Add hint text about font size when no custom font is selected

This commit is contained in:
WerWolv
2023-12-09 12:14:45 +01:00
parent 350635d464
commit 09a148b8a5
4 changed files with 52 additions and 18 deletions

View File

@@ -376,6 +376,14 @@ namespace hex {
return this->m_value;
}
bool Label::draw(const std::string& name) {
ImGui::NewLine();
ImGui::TextUnformatted(name.c_str());
return false;
}
}
}