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.
This commit is contained in:
Matt Baer 2018-04-18 09:48:46 -04:00
parent 55678c93b9
commit 62deb28472

View File

@ -96,7 +96,7 @@ public class WriteAs.MainWindow : Gtk.ApplicationWindow {
build_fontoption(fonts.popup, _("Serif"), "serif", font); build_fontoption(fonts.popup, _("Serif"), "serif", font);
build_fontoption(fonts.popup, _("Sans-serif"), "sans", build_fontoption(fonts.popup, _("Sans-serif"), "sans",
"'Open Sans', 'Segoe UI', Tahoma, Arial, sans-serif"); "'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"); "Menlo-Regular, Menlo, Monaco, 'ubuntu mono', monospace");
fonts.popup.show_all(); fonts.popup.show_all();
} }