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:
parent
55678c93b9
commit
62deb28472
@ -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();
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user