OSDN Git Service

APIGauge: 残り時間計算用のリセット間隔を60分から15分に修正
authorspx <spx268@gmail.com>
Wed, 7 Jan 2015 14:59:38 +0000 (23:59 +0900)
committerspx <spx268@gmail.com>
Wed, 7 Jan 2015 14:59:38 +0000 (23:59 +0900)
OpenTween/ToolStripAPIGauge.cs

index 5a17b41..2a3f02f 100644 (file)
@@ -156,7 +156,7 @@ namespace OpenTween
                 this._GaugeHeight
             );
 
-            var timeGaugeValue = this.remainMinutes >= 60 ? 1.00 : this.remainMinutes / 60;
+            var timeGaugeValue = this.remainMinutes >= 15 ? 1.00 : this.remainMinutes / 15;
             this.timeGaugeBounds = new Rectangle(
                 0,
                 this.apiGaugeBounds.Top + this._GaugeHeight,