Hi,
I want to enlarge the font size of the text displayed in the Note-taking editor. Is there a way to do that?
Thanks,
Dave
style "big-font" {
font_name = "arial 24"
}
class "GtkTextView" style "big-font"
f=transcribe.textview.get_pango_context().get_font_description()
f.set_size(int(f.get_size() * 1.5))
transcribe.textview.modify_font(f)