Skip to content

Commit

Permalink
expanded width of title & text display fields in Visor display so tha…
Browse files Browse the repository at this point in the history
…t all text was not bunched up in the left corner on very wide screens
  • Loading branch information
briandunnington committed Aug 21, 2012
1 parent c2eadfe commit 2bcdd00
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 0 deletions.
2 changes: 2 additions & 0 deletions Growl/Growl.Displays.Visor/VisorWindow.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down
5 changes: 5 additions & 0 deletions Growl/Growl/release_notes.txt
Original file line number Diff line number Diff line change
@@ -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
Expand Down

0 comments on commit 2bcdd00

Please sign in to comment.