diff --git a/Azaion.Annotator/Azaion.Annotator/Controls/AnnotationControl.cs b/Azaion.Annotator/Azaion.Annotator/Controls/AnnotationControl.cs index 4c15a21..9c22da8 100644 --- a/Azaion.Annotator/Azaion.Annotator/Controls/AnnotationControl.cs +++ b/Azaion.Annotator/Azaion.Annotator/Controls/AnnotationControl.cs @@ -49,6 +49,7 @@ public class AnnotationControl : Border HorizontalAlignment = HorizontalAlignment.Center, VerticalAlignment = VerticalAlignment.Top, Margin = new Thickness(0, 15, 0, 0), + FontSize = 14, Cursor = Cursors.Arrow }; _selectionFrame = new Rectangle diff --git a/Azaion.Annotator/Azaion.Annotator/Controls/CanvasEditor.cs b/Azaion.Annotator/Azaion.Annotator/Controls/CanvasEditor.cs index 9dcd98d..c21dee3 100644 --- a/Azaion.Annotator/Azaion.Annotator/Controls/CanvasEditor.cs +++ b/Azaion.Annotator/Azaion.Annotator/Controls/CanvasEditor.cs @@ -41,7 +41,6 @@ public class CanvasEditor : Canvas _horizontalLine.Stroke = value.ColorBrush; _horizontalLine.Fill = value.ColorBrush; _classNameHint.Text = value.Name; - _classNameHint.Foreground = value.ColorBrush; _newAnnotationRect.Stroke = value.ColorBrush; _newAnnotationRect.Fill = value.ColorBrush; @@ -72,7 +71,7 @@ public class CanvasEditor : Canvas _classNameHint = new TextBlock { Text = CurrentAnnClass?.Name ?? "asd", - Foreground = new SolidColorBrush(Colors.Blue), + Foreground = new SolidColorBrush(Colors.Black), Cursor = Cursors.Arrow, FontSize = 16, FontWeight = FontWeights.Bold