Formatting fix

This commit is contained in:
Robin Krom 2021-02-19 23:06:41 +01:00 committed by GitHub
commit ee9d1325b5
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,4 +1,4 @@
/* /*
* Greenshot - a free and open source screenshot tool * Greenshot - a free and open source screenshot tool
* Copyright (C) 2007-2020 Thomas Braun, Jens Klingen, Robin Krom * Copyright (C) 2007-2020 Thomas Braun, Jens Klingen, Robin Krom
* *
@ -22,12 +22,15 @@
using System.Drawing; using System.Drawing;
using System.Windows.Forms; using System.Windows.Forms;
namespace GreenshotPlugin.Controls { namespace GreenshotPlugin.Controls
{
/// <summary> /// <summary>
/// See: http://nickstips.wordpress.com/2010/03/03/c-panel-resets-scroll-position-after-focus-is-lost-and-regained/ /// See: http://nickstips.wordpress.com/2010/03/03/c-panel-resets-scroll-position-after-focus-is-lost-and-regained/
/// </summary> /// </summary>
public class NonJumpingPanel : Panel { public class NonJumpingPanel : Panel
protected override Point ScrollToControl(Control activeControl) { {
protected override Point ScrollToControl(Control activeControl)
{
// Returning the current location prevents the panel from // Returning the current location prevents the panel from
// scrolling to the active control when the panel loses and regains focus // scrolling to the active control when the panel loses and regains focus
return DisplayRectangle.Location; return DisplayRectangle.Location;
@ -38,7 +41,8 @@ namespace GreenshotPlugin.Controls {
/// </summary> /// </summary>
/// <param name="e">MouseEventArgs</param> /// <param name="e">MouseEventArgs</param>
protected override void OnMouseWheel(MouseEventArgs e) protected override void OnMouseWheel(MouseEventArgs e)
{//Check if Scrollbars available and CTRL key pressed -> Zoom IN OUT {
//Check if Scrollbars available and CTRL key pressed -> Zoom IN OUT
if ((VScroll || HScroll) && (ModifierKeys & Keys.Control) == Keys.Control) if ((VScroll || HScroll) && (ModifierKeys & Keys.Control) == Keys.Control)
{ {
VScroll = false; VScroll = false;