mirror of
https://github.com/greenshot/greenshot
synced 2025-07-16 10:03:44 -07:00
Fixed last change to also check for Maximised, corners don't need to be removed from maximised windows.
git-svn-id: http://svn.code.sf.net/p/greenshot/code/trunk@2237 7dccd23d-a4a3-4e1f-8c07-b4c1b4018ab4
This commit is contained in:
parent
197d46c9b9
commit
fd46837c8d
1 changed files with 1 additions and 1 deletions
|
@ -918,7 +918,7 @@ namespace GreenshotPlugin.Core {
|
|||
}
|
||||
}
|
||||
if (capturedBitmap != null) {
|
||||
if (conf.WindowCaptureRemoveCorners) {
|
||||
if (conf.WindowCaptureRemoveCorners && !Maximised) {
|
||||
Color cornerColor = Color.Transparent;
|
||||
if (!Image.IsAlphaPixelFormat(capturedBitmap.PixelFormat)) {
|
||||
cornerColor = Color.FromArgb(255, conf.DWMBackgroundColor.R, conf.DWMBackgroundColor.G, conf.DWMBackgroundColor.B);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue