mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-21 05:09:34 -06:00
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.
This commit is contained in:
@ -21,6 +21,7 @@
|
||||
#include <wx/statusbr.h>
|
||||
#include <wx/textdlg.h>
|
||||
#include <wx/toplevel.h>
|
||||
#include <wx/aui/dockart.h>
|
||||
// clang-format on
|
||||
|
||||
#include "Common/CommonTypes.h"
|
||||
@ -36,6 +37,7 @@
|
||||
#include "DolphinWX/LogConfigWindow.h"
|
||||
#include "DolphinWX/LogWindow.h"
|
||||
#include "DolphinWX/WxUtils.h"
|
||||
#include "DolphinWX/Debugger/DebuggerUIUtil.h"
|
||||
|
||||
// ------------
|
||||
// Aui events
|
||||
@ -622,6 +624,7 @@ void CFrame::TogglePaneStyle(bool On, int EventId)
|
||||
Pane.Dockable(!m_bNoDocking);
|
||||
}
|
||||
}
|
||||
m_Mgr->GetArtProvider()->SetFont(wxAUI_DOCKART_CAPTION_FONT, DebuggerFont);
|
||||
m_Mgr->Update();
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user