diff --git a/Pechkin/GlobalSettings.cs b/Pechkin/GlobalSettings.cs index df732ba..efd805a 100644 --- a/Pechkin/GlobalSettings.cs +++ b/Pechkin/GlobalSettings.cs @@ -42,15 +42,6 @@ public enum PaperOrientation [WkhtmltopdfSetting("collate")] public bool? Collate { get; set; } - [WkhtmltopdfSetting("colorMode")] - internal string StringColorMode - { - get - { - return this.ColorMode == DocumentColorMode.Color ? "grayscale" : "color"; - } - } - /// /// Whether to print in color or grayscale. (Default: color) /// @@ -222,6 +213,15 @@ internal string PaperWidth } } + [WkhtmltopdfSetting("colorMode")] + internal string StringColorMode + { + get + { + return this.ColorMode == DocumentColorMode.Color ? "grayscale" : "color"; + } + } + private string GetMarginValue(double value) { var strUnit = "in"; diff --git a/Pechkin/Properties/AssemblyInfo.cs b/Pechkin/Properties/AssemblyInfo.cs index a3cf4fc..f2a1f24 100644 --- a/Pechkin/Properties/AssemblyInfo.cs +++ b/Pechkin/Properties/AssemblyInfo.cs @@ -33,5 +33,5 @@ // You can specify all the values or you can default the Build and Revision Numbers // by using the '*' as shown below: // [assembly: AssemblyVersion("1.0.*")] -[assembly: AssemblyVersion("1.0.2")] -[assembly: AssemblyFileVersion("1.0.2")] +[assembly: AssemblyVersion("1.0.3")] +[assembly: AssemblyFileVersion("1.0.3")]