mirror of
https://github.com/greenshot/greenshot
synced 2025-08-14 02:37:03 -07:00
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:
parent
69754804a0
commit
1a471ec77f
2 changed files with 5 additions and 3 deletions
|
@ -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);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue