From 21bec6c016a5b11deec117f47d81ff80c86dd8a3 Mon Sep 17 00:00:00 2001 From: Jeff Young Date: Thu, 28 Jan 2021 23:10:06 +0000 Subject: [PATCH] Comment. --- pcbnew/pcb_shape.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pcbnew/pcb_shape.cpp b/pcbnew/pcb_shape.cpp index 0acb40d633..f77ab01b13 100644 --- a/pcbnew/pcb_shape.cpp +++ b/pcbnew/pcb_shape.cpp @@ -962,7 +962,8 @@ const BOX2I PCB_SHAPE::ViewBBox() const } BOX2I return_box = EDA_ITEM::ViewBBox(); - return_box.Inflate( m_width ); + return_box.Inflate( m_width ); // Technically m_width / 2, but it never hurts to be a + // bit large to account for selection shadows, etc. return return_box; }