]> git.saurik.com Git - wxWidgets.git/blobdiff - src/gtk1/settings.cpp
Applied patch [ 681893 ] Combobox in toolbar
[wxWidgets.git] / src / gtk1 / settings.cpp
index 9aed45b5a9785c40154876cfc4ff9826264f6e8b..227599ef0bdd3570ccf4dab34b367c6b9ad58247 100644 (file)
@@ -16,6 +16,7 @@
 #include "wx/debug.h"
 #include "wx/module.h"
 #include "wx/cmndata.h"
+#include "wx/fontutil.h"
 
 #include <gdk/gdk.h>
 #include <gdk/gdkprivate.h>
@@ -326,8 +327,12 @@ wxFont wxSystemSettingsNative::GetFont( wxSystemFont index )
         {
             if (!g_systemFont)
             {
+#ifdef __WXGTK20__
+                const gchar *font_name = _gtk_rc_context_get_default_font_name (gtk_settings_get_default ());
+                g_systemFont = new wxFont( wxString::FromAscii( font_name ) );
+#else
                 g_systemFont = new wxFont( 12, wxSWISS, wxNORMAL, wxNORMAL );
-
+#endif
             }
             return *g_systemFont;
         }