summaryrefslogtreecommitdiffstats
path: root/win/C#/HandBrake.ApplicationServices/Functions/Win7.cs
diff options
context:
space:
mode:
authorsr55 <[email protected]>2010-07-13 22:02:00 +0000
committersr55 <[email protected]>2010-07-13 22:02:00 +0000
commit07de1ce8ff81af998b294103206bdeb4d5591efd (patch)
treed7a86034f5a0a4a85cb719d5fcf5a8148bec8386 /win/C#/HandBrake.ApplicationServices/Functions/Win7.cs
parentd484afb3733d33d42392b915a195769aee2a0ba5 (diff)
WinGui:
- Major rework of the Encode Service. This allows previews to be generated while an encode is running. I've left in a bunch of debug code for the moment so it may be a bit noisy at times if something goes a bit wrong. Will remove later when the code is known to work. - The windows 7 Encode Progress Bar on the Task bar is working again. git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@3436 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'win/C#/HandBrake.ApplicationServices/Functions/Win7.cs')
-rw-r--r--win/C#/HandBrake.ApplicationServices/Functions/Win7.cs4
1 files changed, 1 insertions, 3 deletions
diff --git a/win/C#/HandBrake.ApplicationServices/Functions/Win7.cs b/win/C#/HandBrake.ApplicationServices/Functions/Win7.cs
index d8f522fe3..0123139ba 100644
--- a/win/C#/HandBrake.ApplicationServices/Functions/Win7.cs
+++ b/win/C#/HandBrake.ApplicationServices/Functions/Win7.cs
@@ -6,8 +6,6 @@
namespace HandBrake.ApplicationServices.Functions
{
using System;
-
- using Microsoft.WindowsAPICodePack;
using Microsoft.WindowsAPICodePack.Taskbar;
/// <summary>
@@ -55,7 +53,7 @@ namespace HandBrake.ApplicationServices.Functions
{
return;
}
-
+ windowsTaskbar.SetProgressState(TaskbarProgressBarState.Normal); // todo CHECK THIS
windowsTaskbar.SetProgressValue(percentage, 100);
}