Bloom.MiscUI.TipDialog.AdjustHeights C# (CSharp) Method

AdjustHeights() private method

private AdjustHeights ( ) : void
return void
        private void AdjustHeights()
        {
            //hack: I don't know why this is needed, but it was chopping off the last line in the case of the following message:
            // "There was a problem connecting to the Internet.\r\nWarning: This machine does not have a live network connection.\r\nConnection attempt failed."
            const int kFudge = 50;
            _message.Height = GetDesiredTextBoxHeight()+kFudge;

            var desiredWindowHeight = tableLayout.Height + Padding.Top +
                Padding.Bottom + (Height - ClientSize.Height);

            var scn = Screen.FromControl(this);
            int maxWindowHeight = scn.WorkingArea.Height - 25;

            if (desiredWindowHeight > maxWindowHeight)
            {
                _message.Height -= (desiredWindowHeight - maxWindowHeight);
                _message.ScrollBars = ScrollBars.Vertical;
            }

            Height = Math.Min(desiredWindowHeight, maxWindowHeight);
        }