From 2bcdd004c99c701df24ed2af83aa4d9399764c73 Mon Sep 17 00:00:00 2001 From: briandunnington Date: Tue, 21 Aug 2012 22:50:53 +0000 Subject: [PATCH] expanded width of title & text display fields in Visor display so that all text was not bunched up in the left corner on very wide screens --- Growl/Growl.Displays.Visor/VisorWindow.cs | 2 ++ Growl/Growl/release_notes.txt | 5 +++++ 2 files changed, 7 insertions(+) diff --git a/Growl/Growl.Displays.Visor/VisorWindow.cs b/Growl/Growl.Displays.Visor/VisorWindow.cs index 32ec4f2..87bfd3c 100644 --- a/Growl/Growl.Displays.Visor/VisorWindow.cs +++ b/Growl/Growl.Displays.Visor/VisorWindow.cs @@ -47,6 +47,8 @@ void VisorWindow_Load(object sender, EventArgs e) // set size & location this.Width = screen.Bounds.Width; this.Location = screen.Bounds.Location; + this.titleLabel.Width = this.Width / 2; + this.descriptionLabel.Width = this.Width / 2; // set initial opacity this.Opacity = 0.90; diff --git a/Growl/Growl/release_notes.txt b/Growl/Growl/release_notes.txt index 1b45092..b9669dc 100644 --- a/Growl/Growl/release_notes.txt +++ b/Growl/Growl/release_notes.txt @@ -1,3 +1,8 @@ +v.NEXT +------------------------------ +- expanded width of title & text display fields in Visor display so that all text was not bunched up in the left corner on very wide screens + + 2.0.9 changes (v2.0.9.1) ------------------------------ - set NoImpersonate flag on custom installer actions (in hopes of avoiding some 2869 errors) - http://blogs.msdn.com/b/astebner/archive/2006/10/23/mailbag-how-to-set-the-noimpersonate-flag-for-a-custom-action-in-visual-studio-2005.aspx