Fixed (hopefully) resource issues when changing something in the Designer

git-svn-id: http://svn.code.sf.net/p/greenshot/code/trunk@1734 7dccd23d-a4a3-4e1f-8c07-b4c1b4018ab4
This commit is contained in:
RKrom 2012-04-01 10:56:25 +00:00
commit c559fc3447
39 changed files with 284 additions and 302 deletions

View file

@ -80,7 +80,6 @@ namespace GreenshotPlugin.Controls
this.ControlBox = true;
this.Controls.Add(this.label_pleasewait);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
this.Icon = GreenshotPlugin.Core.GreenshotResources.getGreenshotIcon();
this.MaximizeBox = false;
this.MinimizeBox = false;
this.Name = "BackgroundForm";

View file

@ -50,6 +50,7 @@ namespace GreenshotPlugin.Controls {
// The InitializeComponent() call is required for Windows Forms designer support.
//
InitializeComponent();
this.Icon = GreenshotPlugin.Core.GreenshotResources.getGreenshotIcon();
shouldClose = false;
this.Text = title;
this.label_pleasewait.Text = text;

View file

@ -566,7 +566,7 @@ namespace GreenshotPlugin.Controls {
}
return visibleName;
} else {
return givenKey.ToString();;
return givenKey.ToString();
}
}
}