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:
RKrom 2014-11-18 23:07:43 +01:00
commit 70ad158470
2 changed files with 8 additions and 5 deletions

View file

@ -945,13 +945,15 @@ namespace Greenshot.Helpers {
#region capture with feedback
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.
// as they don't want to
foreach(WindowDetails app in WindowDetails.GetMetroApps()) {
if (app.Maximised) {
app.HideApp();
}
}
// if (app.Maximised) {
// app.HideApp();
// }
//}
using (CaptureForm captureForm = new CaptureForm(_capture, _windows)) {
DialogResult result = captureForm.ShowDialog();
if (result == DialogResult.OK) {

View file

@ -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.
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-1698: Cannot enter textbox/Speechbubble lowercase text after changing font family
* BUG-1700: IE capture only works once