diff options
| author | aldelaro5 <aldelaro5@localhost.localdomain> | 2016-08-27 12:12:13 -0400 |
|---|---|---|
| committer | aldelaro5 <aldelaro5@localhost.localdomain> | 2016-08-27 21:29:03 -0400 |
| commit | cd515911c0bb91a7ff11cfaf37c5629fe79bc1bf (patch) | |
| tree | 9fb03756f686f4a34fe782d7d3f9c102b6d7ff71 /Source/Core/DolphinWX/Debugger/CodeWindow.cpp | |
| parent | f1964f90d647251b677b3de29d08c4c22ea5344a (diff) | |
Fix the user font not appearing on the captions of panes
Both those in the code window and the ones that appears when the user select edit perpective. The one that isn't fixed by this is in edit perspective mode, when the user drags a panel out and it becomes a floating window.
Diffstat (limited to 'Source/Core/DolphinWX/Debugger/CodeWindow.cpp')
| -rw-r--r-- | Source/Core/DolphinWX/Debugger/CodeWindow.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Source/Core/DolphinWX/Debugger/CodeWindow.cpp b/Source/Core/DolphinWX/Debugger/CodeWindow.cpp index 66e87cf9dc..beda6a442b 100644 --- a/Source/Core/DolphinWX/Debugger/CodeWindow.cpp +++ b/Source/Core/DolphinWX/Debugger/CodeWindow.cpp @@ -19,6 +19,7 @@ #include <wx/textdlg.h> #include <wx/thread.h> #include <wx/toolbar.h> +#include <wx/aui/dockart.h> // clang-format on #include "Common/BreakPoints.h" @@ -779,4 +780,5 @@ void CCodeWindow::UpdateButtonStates() symbols->SetFont(DebuggerFont); callers->SetFont(DebuggerFont); calls->SetFont(DebuggerFont); + m_aui_manager.GetArtProvider()->SetFont(wxAUI_DOCKART_CAPTION_FONT, DebuggerFont); } |
