Add monospace font setting for textboxes in debug GUI#1322
Open
Lyrth wants to merge 4 commits into
Open
Conversation
UE4SS
reviewed
Jul 2, 2026
…fonts, minor fix for DebugGUIUseMonospace setting (REGISTER_FLOAT_SETTING -> REGISTER_BOOL_SETTING)
Lyrth
force-pushed
the
feature-mono_font_textboxes
branch
from
July 2, 2026 13:16
f658faa to
8bf70be
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Description
Add a setting to make the font in some textboxes in the debugging GUI monospaced:
GuiConsoleMonospaceTextEditors = 1; applied specifically to GUI console log, Watchers logs, Lua debugger text editors (Debug, Script Editor tabs) and REPL tab input and history.(also arranged the fonts around a bit.)
Type of change
How has this been tested?
GuiConsoleMonospaceTextEditorsdisabled: no change in behavior. Check screenshots below for when it's enabled.Tested only on Linux but should behave the exact same on Windows.
Checklist
Screenshots
GuiConsoleMonospaceTextEditors enabled screenshots:
Additional context
Also thought about making a separate setting to make it apply to the entire debug GUI, but I imagine it to be more tedious since there may be some alignment changes that need to be done in a lot of places, so this only covers the tall textboxes.
Default setting is disabled since it can technically be breaking, for mods that rely on non-monospaced text alignment in the console. But if that doesn't matter much we could have it enabled by default I guess.