diff options
author | Scott <[email protected]> | 2016-01-03 20:36:51 +0000 |
---|---|---|
committer | Scott <[email protected]> | 2016-01-03 20:37:47 +0000 |
commit | 1f96c52a958cb560d21c0a65814eb336a56780d6 (patch) | |
tree | 9e6e584e866ec37b271a26fc0107265dae3394bc | |
parent | cf0fee277ebbff31d8807e4a8a19678f0241483e (diff) |
WinGui: Fix AssemblyInfo Theme loading issue that broke the audio/subtitle split button control.
-rw-r--r-- | win/CS/HandBrakeWPF/Properties/AssemblyInfo.cs | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/win/CS/HandBrakeWPF/Properties/AssemblyInfo.cs b/win/CS/HandBrakeWPF/Properties/AssemblyInfo.cs index 067fa4a63..fe43f8ac3 100644 --- a/win/CS/HandBrakeWPF/Properties/AssemblyInfo.cs +++ b/win/CS/HandBrakeWPF/Properties/AssemblyInfo.cs @@ -2,6 +2,7 @@ using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
+using System.Windows;
// General Information about an assembly is controlled through the following
// set of attributes. Change these attribute values to modify the information
@@ -34,3 +35,12 @@ using System.Runtime.InteropServices; [assembly: AssemblyFileVersion("0.10.3.0")]
[assembly: NeutralResourcesLanguage("en-GB")]
+
+[assembly: ThemeInfo(
+ ResourceDictionaryLocation.None, //where theme specific resource dictionaries are located
+ //(used if a resource is not found in the page,
+ // or application resource dictionaries)
+ ResourceDictionaryLocation.SourceAssembly //where the generic resource dictionary is located
+ //(used if a resource is not found in the page,
+ // app, or any theme specific resource dictionaries)
+)]
|