Mono dev tools (#5175)

* apply mono font to some dev tool windows

* soh gui wrappers for gfxdebugger and console to set mono font

* it can be just a little larger
This commit is contained in:
Archez
2025-03-21 07:21:33 -04:00
committed by GitHub
parent 985bf91945
commit 57bc5690e2
13 changed files with 109 additions and 10 deletions

View File

@@ -1555,6 +1555,8 @@ void ResetBaseOptions() {
void SaveEditorWindow::DrawElement() {
PushStyleTabs(THEME_COLOR);
ImGui::PushFont(OTRGlobals::Instance->fontMonoLarger);
if (ImGui::BeginTabBar("SaveContextTabBar", ImGuiTabBarFlags_NoCloseWithMiddleMouseButton)) {
ResetBaseOptions();
if (ImGui::BeginTabItem("Info")) {
@@ -1594,6 +1596,8 @@ void SaveEditorWindow::DrawElement() {
ImGui::EndTabBar();
}
ImGui::PopFont();
PopStyleTabs();
}