mirror of
https://github.com/greenshot/greenshot
synced 2025-08-21 14:03:23 -07:00
Fixed BUG-1620 Greenshot crashing Chrome running in 'Windows 8 Mode', it seems the HideApp causes the app to restart. Don't know if we need this anymore, with 1 screen windows 8.1 everything works without it.
This commit is contained in:
parent
cfb4711692
commit
70ad158470
2 changed files with 8 additions and 5 deletions
|
@ -945,13 +945,15 @@ namespace Greenshot.Helpers {
|
||||||
|
|
||||||
#region capture with feedback
|
#region capture with feedback
|
||||||
private void CaptureWithFeedback() {
|
private void CaptureWithFeedback() {
|
||||||
|
// The following, to be precise the HideApp, causes the app to close as described in BUG-1620
|
||||||
// Added check for metro (Modern UI) apps, which might be maximized and cover the screen.
|
// Added check for metro (Modern UI) apps, which might be maximized and cover the screen.
|
||||||
// as they don't want to
|
|
||||||
foreach(WindowDetails app in WindowDetails.GetMetroApps()) {
|
foreach(WindowDetails app in WindowDetails.GetMetroApps()) {
|
||||||
if (app.Maximised) {
|
// if (app.Maximised) {
|
||||||
app.HideApp();
|
// app.HideApp();
|
||||||
}
|
// }
|
||||||
}
|
//}
|
||||||
|
|
||||||
using (CaptureForm captureForm = new CaptureForm(_capture, _windows)) {
|
using (CaptureForm captureForm = new CaptureForm(_capture, _windows)) {
|
||||||
DialogResult result = captureForm.ShowDialog();
|
DialogResult result = captureForm.ShowDialog();
|
||||||
if (result == DialogResult.OK) {
|
if (result == DialogResult.OK) {
|
||||||
|
|
|
@ -14,6 +14,7 @@ Changes:
|
||||||
* Optimized Greenshots update check to use even less traffic by checking the time-stamp of the update feed before downloading it.
|
* Optimized Greenshots update check to use even less traffic by checking the time-stamp of the update feed before downloading it.
|
||||||
|
|
||||||
Bugs Resolved:
|
Bugs Resolved:
|
||||||
|
* BUG-1620: Greenshot crashing Chrome running in 'Windows 8 Mode'
|
||||||
* BUG-1686: Shadow (drop shadow or torn edge) grows if a filter (highlight etc) is used and an element is moved around
|
* BUG-1686: Shadow (drop shadow or torn edge) grows if a filter (highlight etc) is used and an element is moved around
|
||||||
* BUG-1698: Cannot enter textbox/Speechbubble lowercase text after changing font family
|
* BUG-1698: Cannot enter textbox/Speechbubble lowercase text after changing font family
|
||||||
* BUG-1700: IE capture only works once
|
* BUG-1700: IE capture only works once
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue