チェンジセット 2885

差分発生行の前後
無視リスト:
コミット日時:
2009/07/03 01:46:15 (9 ヶ月前)
コミッタ:
dsler
ログメッセージ:

set supportDotPositionの中を少し書き換え。

ファイル:

凡例:

変更無し
追加
削除
更新
コピー
移動
  • as3/SirdsAS3/org/libspark/dsler/SirdsAS3/RDSImage.as

    r2884 r2885  
    6868                 
    6969                public function set supportDotPosition(val:String):void{ 
    70                         if(val == "top"){ 
    71                                 _spdot.y = 15; 
    72                         }else if(val == "bottom"){ 
    73                                 _spdot.y = _rds.height - 15; 
    74                         }else if(val == "center"){ 
    75                                 _spdot.y = _rds.height / 2 - _spdot.height / 2; 
    76                         } 
     70                        if(val == "top") _spdot.y = 15; 
     71                        else if(val == "bottom") _spdot.y = _rds.height - 15; 
     72                        else if(val == "center") _spdot.y = _rds.height / 2 - _spdot.height / 2; 
    7773                } 
    7874                public function get supportDotPosition():String{