summaryrefslogtreecommitdiff
path: root/Source/Core/DebuggerWX/Src/BreakpointView.cpp
diff options
context:
space:
mode:
authorbushing <bushing@gmail.com>2008-12-26 03:46:04 +0000
committerbushing <bushing@gmail.com>2008-12-26 03:46:04 +0000
commitba58962d2450cd1b27449867bf4decc62be4cc4d (patch)
treea89d859ee9b03c252ff2523f552191a7115fb8a8 /Source/Core/DebuggerWX/Src/BreakpointView.cpp
parenta9e588f4f34477d07978d9b89af60bcbd9086859 (diff)
Change the font in DebuggerWX to something legible kthx
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@1667 8ced0084-cf51-0410-be5f-012b33b47a6e
Diffstat (limited to 'Source/Core/DebuggerWX/Src/BreakpointView.cpp')
-rw-r--r--Source/Core/DebuggerWX/Src/BreakpointView.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Core/DebuggerWX/Src/BreakpointView.cpp b/Source/Core/DebuggerWX/Src/BreakpointView.cpp
index 075397c498..bc1588fdf0 100644
--- a/Source/Core/DebuggerWX/Src/BreakpointView.cpp
+++ b/Source/Core/DebuggerWX/Src/BreakpointView.cpp
@@ -30,7 +30,7 @@ END_EVENT_TABLE()
CBreakPointView::CBreakPointView(wxWindow* parent, const wxWindowID id, const wxPoint& pos, const wxSize& size, long style)
: wxListCtrl(parent, id, pos, size, style)
{
- SetFont(wxFont(9, wxSWISS, wxNORMAL, wxNORMAL, false, wxT("Segoe UI")));
+ SetFont(DefaultFont);
Refresh();
}