diff --git a/Greenshot/Helpers/PrintHelper.cs b/Greenshot/Helpers/PrintHelper.cs index 0ee466d0e..eddad90e7 100644 --- a/Greenshot/Helpers/PrintHelper.cs +++ b/Greenshot/Helpers/PrintHelper.cs @@ -174,6 +174,11 @@ namespace Greenshot.Helpers { // Get a rectangle representing the printable Area RectangleF pageRect = e.PageSettings.PrintableArea; + if(e.PageSettings.Landscape) { + float origWidth = pageRect.Width; + pageRect.Width = pageRect.Height; + pageRect.Height = origWidth; + } // Subtract the dateString height from the available area, this way the area stays free pageRect.Height -= footerStringHeight;