more convenient get_font;
authorwenzelm
Mon, 10 May 2010 17:29:19 +0200
changeset 36785 55025bd6605f
parent 36784 cf36fd1e4cda
child 36786 b7a62e7dec00
more convenient get_font;
src/Pure/System/isabelle_system.scala
--- a/src/Pure/System/isabelle_system.scala	Mon May 10 17:07:47 2010 +0200
+++ b/src/Pure/System/isabelle_system.scala	Mon May 10 17:29:19 2010 +0200
@@ -318,8 +318,8 @@
 
   val font_family = "IsabelleText"
 
-  def get_font(bold: Boolean): Font =
-    new Font(font_family, if (bold) Font.BOLD else Font.PLAIN, 1)
+  def get_font(bold: Boolean = false, size: Int = 1): Font =
+    new Font(font_family, if (bold) Font.BOLD else Font.PLAIN, size)
 
   def install_fonts()
   {