From 62deb28472deb4f70fa32df1c31525a20ba12f96 Mon Sep 17 00:00:00 2001 From: Matt Baer Date: Wed, 18 Apr 2018 09:48:46 -0400 Subject: [PATCH] Fix monospace font value I slipped on this one -- the correct font value for monospace posts is "wrap" not "mono". "mono" is more for code or terminal output, not the writing that users will do with this app. --- src/window.vala | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/window.vala b/src/window.vala index c0343e5..ede7e6d 100644 --- a/src/window.vala +++ b/src/window.vala @@ -96,7 +96,7 @@ public class WriteAs.MainWindow : Gtk.ApplicationWindow { build_fontoption(fonts.popup, _("Serif"), "serif", font); build_fontoption(fonts.popup, _("Sans-serif"), "sans", "'Open Sans', 'Segoe UI', Tahoma, Arial, sans-serif"); - build_fontoption(fonts.popup, _("Monospace"), "mono", "Hack, consolas," + + build_fontoption(fonts.popup, _("Monospace"), "wrap", "Hack, consolas," + "Menlo-Regular, Menlo, Monaco, 'ubuntu mono', monospace"); fonts.popup.show_all(); }