Added thread name, used for debugging. Added hotkey descriptions for rotate ccw/cw in language-en-US.xml

git-svn-id: http://svn.code.sf.net/p/greenshot/code/trunk@2364 7dccd23d-a4a3-4e1f-8c07-b4c1b4018ab4
This commit is contained in:
RKrom 2012-12-07 13:40:53 +00:00
commit 1a471ec77f
2 changed files with 5 additions and 3 deletions

View file

@ -88,7 +88,9 @@ namespace Greenshot {
InitializeComponent();
this.Load += delegate {
new Thread(delegate() {AddDestinations();}).Start();
var thread = new Thread(delegate() {AddDestinations();});
thread.Name = "add destinations";
thread.Start();
};
IniConfig.IniChanged += new FileSystemEventHandler(ReloadConfiguration);