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

github.com/mono/mono-tools.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Kestner <mkestner@gmail.com>2009-08-29 00:21:10 +0400
committerMike Kestner <mkestner@gmail.com>2009-08-29 00:21:10 +0400
commit3cbc2afc376d4baef05609139b951ff856473b36 (patch)
treeea29b910863b65b82bc14d8bf92f8daa9018f9fa /Mono.Profiler
parent76af3e7cc716eab7f01eaae5de81e6940a01be51 (diff)
2009-08-28 Mike Kestner <mkestner@novell.com>
* StartPage.cs: a little banner gradient tweaking. svn path=/trunk/mono-tools/; revision=140905
Diffstat (limited to 'Mono.Profiler')
-rw-r--r--Mono.Profiler/Mono.Profiler.Widgets/ChangeLog4
-rw-r--r--Mono.Profiler/Mono.Profiler.Widgets/StartPage.cs4
2 files changed, 6 insertions, 2 deletions
diff --git a/Mono.Profiler/Mono.Profiler.Widgets/ChangeLog b/Mono.Profiler/Mono.Profiler.Widgets/ChangeLog
index 4e11f121..7de3194d 100644
--- a/Mono.Profiler/Mono.Profiler.Widgets/ChangeLog
+++ b/Mono.Profiler/Mono.Profiler.Widgets/ChangeLog
@@ -1,5 +1,9 @@
2009-08-28 Mike Kestner <mkestner@novell.com>
+ * StartPage.cs: a little banner gradient tweaking.
+
+2009-08-28 Mike Kestner <mkestner@novell.com>
+
* History.cs: basic history tracking xml serialized class.
* StartPage.cs: display recent logs using new history.
diff --git a/Mono.Profiler/Mono.Profiler.Widgets/StartPage.cs b/Mono.Profiler/Mono.Profiler.Widgets/StartPage.cs
index 59e3de40..f4becdd7 100644
--- a/Mono.Profiler/Mono.Profiler.Widgets/StartPage.cs
+++ b/Mono.Profiler/Mono.Profiler.Widgets/StartPage.cs
@@ -214,8 +214,8 @@ namespace Mono.Profiler.Widgets {
ctx.LineTo (new Cairo.PointD (0, Bounds.Height));
ctx.ClosePath ();
ctx.Save ();
- Cairo.Gradient grad = new Cairo.LinearGradient (Bounds.Width / 3, 0, Bounds.Width * 2 / 3, Bounds.Height);
- grad.AddColorStop (0, new Cairo.Color (0.0, 0.0, 0.7, 1.0));
+ Cairo.Gradient grad = new Cairo.LinearGradient (Bounds.Width / 4, 0, Bounds.Width * 3 / 4, Bounds.Height);
+ grad.AddColorStop (0, new Cairo.Color (0.0, 0.0, 0.5, 1.0));
grad.AddColorStop (1, new Cairo.Color (0.0, 0.0, 1.0, 1.0));
ctx.Pattern = grad;
ctx.FillPreserve ();