diff options
| author | Scott Mansell <phiren@gmail.com> | 2016-08-29 11:17:59 +1200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2016-08-29 11:17:59 +1200 |
| commit | fc969388f07704e5e79f242e25d5e5ac38918191 (patch) | |
| tree | 76bc4ce7eb4ae4d74743f71a08a9c8b1a795eb3d /Source/Core/DolphinWX/Debugger/CodeWindow.cpp | |
| parent | 916bfdedbfcb1a553a0af95d1b96c973fe3b5607 (diff) | |
| parent | cd515911c0bb91a7ff11cfaf37c5629fe79bc1bf (diff) | |
Merge pull request #4152 from aldelaro5/debugger-font-fix
Fix the Debugger font not appearing on the captions of panes
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); } |
