Skip to content

Commit

Permalink
Merge branch 'master' into xcircuit-3.10
Browse files Browse the repository at this point in the history
  • Loading branch information
RTimothyEdwards committed Sep 20, 2020
2 parents eb4fc5a + fcee698 commit adc6bf9
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3.10.28
3.10.29
5 changes: 5 additions & 0 deletions tclxcircuit.c
Original file line number Diff line number Diff line change
Expand Up @@ -9856,6 +9856,11 @@ void build_app_database(Tk_Window tkwind)
appdata.filefont = XLoadQueryFont(dpy, "-*-*-medium-r-normal--14-*");
if (appdata.filefont == NULL)
appdata.filefont = XLoadQueryFont(dpy, "-*-*-*-*-*--*-*");
if (appdata.filefont == NULL)
appdata.filefont = XLoadQueryFont(dpy, "*");
if (appdata.filefont == NULL) {
Fprintf(stderr, "Fatal error: No X11 fonts found.\n");
}
}

/* Other defaults */
Expand Down

0 comments on commit adc6bf9

Please sign in to comment.