Skip to content

Commit 8a1ef6b

Browse files
author
tuespetre
committed
Patch # increment and code formatting
1 parent d877050 commit 8a1ef6b

File tree

2 files changed

+11
-11
lines changed

2 files changed

+11
-11
lines changed

Pechkin/GlobalSettings.cs

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -42,15 +42,6 @@ public enum PaperOrientation
4242
[WkhtmltopdfSetting("collate")]
4343
public bool? Collate { get; set; }
4444

45-
[WkhtmltopdfSetting("colorMode")]
46-
internal string StringColorMode
47-
{
48-
get
49-
{
50-
return this.ColorMode == DocumentColorMode.Color ? "grayscale" : "color";
51-
}
52-
}
53-
5445
/// <summary>
5546
/// Whether to print in color or grayscale. (Default: color)
5647
/// </summary>
@@ -222,6 +213,15 @@ internal string PaperWidth
222213
}
223214
}
224215

216+
[WkhtmltopdfSetting("colorMode")]
217+
internal string StringColorMode
218+
{
219+
get
220+
{
221+
return this.ColorMode == DocumentColorMode.Color ? "grayscale" : "color";
222+
}
223+
}
224+
225225
private string GetMarginValue(double value)
226226
{
227227
var strUnit = "in";

Pechkin/Properties/AssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,5 +33,5 @@
3333
// You can specify all the values or you can default the Build and Revision Numbers
3434
// by using the '*' as shown below:
3535
// [assembly: AssemblyVersion("1.0.*")]
36-
[assembly: AssemblyVersion("1.0.2")]
37-
[assembly: AssemblyFileVersion("1.0.2")]
36+
[assembly: AssemblyVersion("1.0.3")]
37+
[assembly: AssemblyFileVersion("1.0.3")]

0 commit comments

Comments
 (0)