diff options
| author | aldelaro5 <aldelaro5@localhost.localdomain> | 2016-09-11 20:03:10 -0400 |
|---|---|---|
| committer | aldelaro5 <aldelaro5@localhost.localdomain> | 2016-09-11 20:13:20 -0400 |
| commit | 6b6cce823b9718a1e80fbbca64f55b273ed23ece (patch) | |
| tree | 2c6679cd9f8e4e0cbc3877fe6ecd7885b5b74c3e /Source/Core | |
| parent | 6e488e65e3782537e81b91696bc36dfc2edbc9f9 (diff) | |
Fix the debugger font not appearing on the captions of panes (DSP)
Forgot to fix that since the last font fix.
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 c3d2aef98c..9829b3f732 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(); |
