Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/monodevelop.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'main/src/tools/mdmonitor/TimeLineView.cs')
-rw-r--r--main/src/tools/mdmonitor/TimeLineView.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/main/src/tools/mdmonitor/TimeLineView.cs b/main/src/tools/mdmonitor/TimeLineView.cs
index cac59f3169..613d5386e2 100644
--- a/main/src/tools/mdmonitor/TimeLineView.cs
+++ b/main/src/tools/mdmonitor/TimeLineView.cs
@@ -368,7 +368,7 @@ namespace Mono.Instrumentation.Monitor
ctx.NewPath ();
ctx.Rectangle (markerX, ytop + baseTime + 0.5, MarkerWidth/2, ((mainValue.Duration.TotalMilliseconds * scale) / 1000));
- Mono.TextEditor.HslColor hsl = Style.Foreground (Gtk.StateType.Normal);
+ HslColor hsl = Style.Foreground (Gtk.StateType.Normal);
hsl.L = 0.8;
ctx.SetSourceColor (hsl);
ctx.Fill ();
@@ -465,7 +465,7 @@ namespace Mono.Instrumentation.Monitor
ctx.NewPath ();
double dx = val == focusedValue ? 0 : 2;
ctx.Rectangle (lx + 0.5 + dx - SelectedValuePadding, ytime + 0.5, LineEndWidth - dx*2 + SelectedValuePadding, ((val.Duration.TotalMilliseconds * scale) / 1000));
- Mono.TextEditor.HslColor hsl = color;
+ HslColor hsl = color;
hsl.L = val == focusedValue ? 0.9 : 0.8;
ctx.SetSourceColor (hsl);
ctx.Fill ();