mirror of
https://git.tartarus.org/simon/putty.git
synced 2025-07-04 21:12:47 -05:00
Enable the display of server-side font aliases by default in my font
selector. I had previously been worried that the default of not showing aliases interacted badly with the default actual font _being_ specified as an alias. One of those defaults had to change, and I've decided which: `fixed' is staying as Unix PuTTY's default font in defiance of GTK2's vigorous encouragement of Pango. [originally from svn r7960]
This commit is contained in:
@ -2304,7 +2304,8 @@ unifontsel *unifontsel_new(const char *wintitle)
|
||||
gtk_table_attach(GTK_TABLE(table), w, 0, 3, 7, 8, GTK_FILL, 0, 0, 0);
|
||||
|
||||
assert(i == lenof(fs->filter_buttons));
|
||||
fs->filter_flags = FONTFLAG_CLIENTSIDE | FONTFLAG_SERVERSIDE;
|
||||
fs->filter_flags = FONTFLAG_CLIENTSIDE | FONTFLAG_SERVERSIDE |
|
||||
FONTFLAG_SERVERALIAS;
|
||||
unifontsel_set_filter_buttons(fs);
|
||||
|
||||
/*
|
||||
|
Reference in New Issue
Block a user