mirror of
https://github.com/greenshot/greenshot
synced 2025-08-19 21:13:23 -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);
|
||||
|
|
|
@ -127,8 +127,8 @@ Also, we would highly appreciate if you checked whether a tracker item already e
|
|||
<resource name="editor_print">Print</resource>
|
||||
<resource name="editor_redo">Redo {0}</resource>
|
||||
<resource name="editor_resetsize">Reset size</resource>
|
||||
<resource name="editor_rotateccw">Rotate counter clockwise</resource>
|
||||
<resource name="editor_rotatecw">Rotate clockwise</resource>
|
||||
<resource name="editor_rotateccw">Rotate counter clockwise (Control + ,)</resource>
|
||||
<resource name="editor_rotatecw">Rotate clockwise (Control + .)</resource>
|
||||
<resource name="editor_save">Save</resource>
|
||||
<resource name="editor_save_objects">Save objects to file</resource>
|
||||
<resource name="editor_saveas">Save as...</resource>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue