From: Sweidan Omar Date: Thu, 13 Jan 2022 08:00:28 +0000 (+0000) Subject: #310 X-Git-Url: http://git.useribm.hu/?a=commitdiff_plain;h=204e2246766149473fbfc3ef4f94f7f17d138bc2;p=mediacube.git #310 git-tfs-id: [http://tfs.userrendszerhaz.hu:8080/tfs/DefaultCollection]$/MediaCube;C32741 --- diff --git a/client/DxPlay/Controls/VideoSpeedTrackbar.cs b/client/DxPlay/Controls/VideoSpeedTrackbar.cs index 2686dba6..8d872e1a 100644 --- a/client/DxPlay/Controls/VideoSpeedTrackbar.cs +++ b/client/DxPlay/Controls/VideoSpeedTrackbar.cs @@ -9,17 +9,16 @@ namespace DxPlay.Controls }; private float currentSpeed; - public float[] AvailableSpeeds - { - get { return mAvailableSpeeds; } - set { mAvailableSpeeds= value; } - } + public float[] AvailableSpeeds { get; set; } public float CurrentSpeed { get; set; } - public VideoSpeedTrackbar() { - this.Minimum = 1; - this.Maximum = 6; - this.Value = 3; + public VideoSpeedTrackbar() { + this.Minimum = 0; + this.Maximum = 5; + this.Value = 2; + this.LargeChange = 1; + this.SmallChange = 1; + this.Tag = "PlaySpeed"; } } }