Show
Ignore:
Timestamp:
01/23/09 16:53:23 (4 years ago)
Author:
isaisstillalive
Message:
  • Controlにfontプロパティを定義。
Files:
1 modified

Legend:

Unmodified
Added
Removed
  • lang/ruby/ruwin/lib/ruwin/control.rb

    r28911 r28914  
    1010      :bottom     => nil, 
    1111      :width      => nil, 
    12       :height     => nil 
     12      :height     => nil, 
     13      :font       => nil 
    1314     
    1415    def initialize 
     
    1617        move @proparty[:left]||0, @proparty[:top]||0, @proparty[:width]||0, @proparty[:height]||0 
    1718      end 
     19      self.font = @proparty[:font] if @proparty[:font] 
    1820    end 
    1921