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)
             
            
            I chose the first option and it works fine. I set the font size to 12 and that is great for me...that is so much easier on my eyes. I'm using Windows XP; so I had to do a "save as" in Notepad to create the ".gtkrc-2.0" file name as the note below the workaround suggested.
        I chose the first option and it works fine. I set the font size to 12 and that is great for me...that is so much easier on my eyes. I'm using Windows XP; so I had to do a "save as" in Notepad to create the ".gtkrc-2.0" file name as the note below the workaround suggested.