From ad62450575f4efbb75129eac055ee0a53d1b41be Mon Sep 17 00:00:00 2001 From: John Lewin Date: Fri, 11 May 2018 18:35:00 -0700 Subject: [PATCH] Remove accidental shadowing of base property --- Library/Widgets/ListView/RowListView.cs | 3 --- 1 file changed, 3 deletions(-) diff --git a/Library/Widgets/ListView/RowListView.cs b/Library/Widgets/ListView/RowListView.cs index e4d95c5b8..354a95c28 100644 --- a/Library/Widgets/ListView/RowListView.cs +++ b/Library/Widgets/ListView/RowListView.cs @@ -72,8 +72,6 @@ namespace MatterHackers.MatterControl.CustomWidgets public class RowViewItem : ListViewItemBase { - private ThemeConfig theme; - public RowViewItem(ListViewItem listViewItem, int thumbWidth, int thumbHeight, ThemeConfig theme) : base(listViewItem, thumbWidth, thumbHeight, theme) { @@ -82,7 +80,6 @@ namespace MatterHackers.MatterControl.CustomWidgets this.HAnchor = HAnchor.Stretch; this.Padding = new BorderDouble(0); this.Margin = new BorderDouble(6, 0, 6, 6); - this.theme = theme; var row = new FlowLayoutWidget(FlowDirection.LeftToRight) {