mirror of
https://github.com/greenshot/greenshot
synced 2025-08-20 21:43:24 -07:00
Fix for bug #3577305, using interactive capture mode as the active window is not longer active when a click on the context menu is made. The mouse also needs to be removed (is made by specifying false in the CaptureWindowInteractive call), as it was on the context menu the location no longer makes sense.
git-svn-id: http://svn.code.sf.net/p/greenshot/code/trunk@2196 7dccd23d-a4a3-4e1f-8c07-b4c1b4018ab4
This commit is contained in:
parent
fbc0285c93
commit
c97600982a
1 changed files with 3 additions and 1 deletions
|
@ -846,7 +846,9 @@ namespace Greenshot {
|
|||
}
|
||||
|
||||
void Contextmenu_capturewindow_Click(object sender,EventArgs e) {
|
||||
CaptureWindow();
|
||||
BeginInvoke((MethodInvoker)delegate {
|
||||
CaptureHelper.CaptureWindowInteractive(false);
|
||||
});
|
||||
}
|
||||
|
||||
void Contextmenu_capturewindowfromlist_Click(object sender,EventArgs e) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue