Skip to content

Commit 319ea33

Browse files
committed
[fix] highlighter
1 parent e05691b commit 319ea33

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

AutomaticUpdateVersionControl.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
4.7.0
1+
4.7.1

Ink Canvas/MainWindow_cs/MW_PenColors.cs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -191,9 +191,11 @@ private void CheckColorTheme(bool changeColorTheme = false) {
191191
byte NowG = drawingAttributes.Color.G;
192192
byte NowB = drawingAttributes.Color.B;
193193
drawingAttributes.Color = Color.FromArgb((byte)Settings.Canvas.InkAlpha, NowR, NowG, NowB);
194+
drawingAttributes.IsHighlighter = true;
194195
} else {
195196
drawingAttributes.Height = Settings.Canvas.InkWidth;
196197
drawingAttributes.Width = Settings.Canvas.InkWidth;
198+
drawingAttributes.IsHighlighter = false;
197199
}
198200
}
199201

Ink Canvas/Properties/AssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,5 +49,5 @@
4949
// You can specify all the values or you can default the Build and Revision Numbers
5050
// by using the '*' as shown below:
5151
// [assembly: AssemblyVersion("1.0.*")]
52-
[assembly: AssemblyVersion("4.7.0.0")]
53-
[assembly: AssemblyFileVersion("4.7.0.0")]
52+
[assembly: AssemblyVersion("4.7.1.0")]
53+
[assembly: AssemblyFileVersion("4.7.1.0")]

0 commit comments

Comments
 (0)