aboutsummaryrefslogtreecommitdiffstats
path: root/epan
diff options
context:
space:
mode:
authorJörg Mayer <jmayer@loplof.de>2005-08-16 06:48:06 +0000
committerJörg Mayer <jmayer@loplof.de>2005-08-16 06:48:06 +0000
commit0b845c626f9f7522803eb0ef7810408111adeae1 (patch)
tree1f6af2b3049b337b7d00d9794eadc5d12b6c42b7 /epan
parent0f9ffd69231e26d707c585d9a3884b95d244232d (diff)
Change the default font size on Unix (etc) to 10 pt, just as it was
already on Windows. Changed the default font to Monospace, as some Linux distributions did that already. In case this isn't available on all platforms we will need to change it back to "fixed medium". svn path=/trunk/; revision=15372
Diffstat (limited to 'epan')
-rw-r--r--epan/prefs.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/epan/prefs.c b/epan/prefs.c
index 4d257460be..d97288bb45 100644
--- a/epan/prefs.c
+++ b/epan/prefs.c
@@ -1006,9 +1006,9 @@ init_prefs(void) {
* protocol-tree, and hex-dump windows involves a lot more than, say,
* just using font sets rather than fonts.
*/
- prefs.gui_font_name1 = g_strdup("-misc-fixed-medium-r-semicondensed-*-*-120-*-*-*-*-iso8859-1");
+ prefs.gui_font_name1 = g_strdup("-misc-fixed-medium-r-semicondensed-*-*-100-*-*-*-*-iso8859-1");
/* XXX- is this the correct default font name for GTK2 none win32? */
- prefs.gui_font_name2 = g_strdup("fixed medium 12");
+ prefs.gui_font_name2 = g_strdup("Monospace 10");
#endif
prefs.gui_marked_fg.pixel = 65535;
prefs.gui_marked_fg.red = 65535;