diff options
| author | Scott Mansell <phiren@gmail.com> | 2016-09-14 18:09:28 +1200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2016-09-14 18:09:28 +1200 |
| commit | 4e595ca25fe81d2c41662bd14673b52a86429c34 (patch) | |
| tree | 43fc592b487ad1629f6d8dd79aaf2c7b9e33eca1 /Source/Core | |
| parent | d5c25a89900613f1541a0d92c21748aa3449d693 (diff) | |
| parent | 6b6cce823b9718a1e80fbbca64f55b273ed23ece (diff) | |
Merge pull request #4208 from aldelaro5/more-debugger-font-fix
Fix the debugger font not appearing on the captions of panes (DSP)
Diffstat (limited to 'Source/Core')
| -rw-r--r-- | Source/Core/DolphinWX/Debugger/DSPDebugWindow.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Source/Core/DolphinWX/Debugger/DSPDebugWindow.cpp b/Source/Core/DolphinWX/Debugger/DSPDebugWindow.cpp index d4e9907841..199f1d376e 100644 --- a/Source/Core/DolphinWX/Debugger/DSPDebugWindow.cpp +++ b/Source/Core/DolphinWX/Debugger/DSPDebugWindow.cpp @@ -5,6 +5,7 @@ #include <cstdio> #include <wx/artprov.h> #include <wx/aui/auibook.h> +#include <wx/aui/dockart.h> #include <wx/aui/framemanager.h> #include <wx/listbox.h> #include <wx/panel.h> @@ -23,6 +24,7 @@ #include "DolphinWX/Debugger/CodeView.h" #include "DolphinWX/Debugger/DSPDebugWindow.h" #include "DolphinWX/Debugger/DSPRegisterView.h" +#include "DolphinWX/Debugger/DebuggerUIUtil.h" #include "DolphinWX/Debugger/MemoryView.h" #include "DolphinWX/WxUtils.h" @@ -97,6 +99,7 @@ DSPDebuggerLLE::DSPDebuggerLLE(wxWindow* parent, wxWindowID id) m_mgr.AddPane(m_Regs, wxAuiPaneInfo().Right().CloseButton(false).Caption(_("Registers")).Dockable(true)); + m_mgr.GetArtProvider()->SetFont(wxAUI_DOCKART_CAPTION_FONT, DebuggerFont); UpdateState(); m_mgr.Update(); |
