src/Pure/ML/ml_statistics.scala
changeset 50854 2b15227b17e8
parent 50777 20126dd9772c
child 50855 3f9a24e7349e
equal deleted inserted replaced
50853:86389991636e 50854:2b15227b17e8
   105   def chart(arg: (String, Iterable[String])): JFreeChart = chart(arg._1, arg._2)
   105   def chart(arg: (String, Iterable[String])): JFreeChart = chart(arg._1, arg._2)
   106 
   106 
   107   def standard_frames: Unit =
   107   def standard_frames: Unit =
   108     ML_Statistics.standard_fields.map(chart(_)).foreach(c =>
   108     ML_Statistics.standard_fields.map(chart(_)).foreach(c =>
   109       Swing_Thread.later {
   109       Swing_Thread.later {
   110         new Frame { contents = Component.wrap(new ChartPanel(c)); visible = true }
   110         new Frame {
       
   111           iconImage = Isabelle_System.get_icon().getImage
       
   112           contents = Component.wrap(new ChartPanel(c))
       
   113           visible = true
       
   114         }
   111       })
   115       })
   112 }
   116 }
   113 
   117