diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..7a60b85 --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ +__pycache__/ +*.pyc diff --git a/plugins/component_table/__init__.py b/plugins/component_table/__init__.py index 1abe136..35a94a7 100644 --- a/plugins/component_table/__init__.py +++ b/plugins/component_table/__init__.py @@ -11,7 +11,7 @@ class Sortable_Component_List(wx.ListCtrl, listmix.ColumnSorterMixin): def __init__(self, parent): wx.ListCtrl.__init__( self, parent, - style=wx.LC_REPORT | wx.LC_HRULES | wx.LC_VRULES | wx.LC_SINGLE_SEL + style=wx.LC_REPORT | wx.LC_HRULES | wx.LC_VRULES ) col_widths = [100, 120, 160, 200, 200] for i, (col, w) in enumerate(zip(COLUMNS, col_widths)): diff --git a/plugins/component_table/__pycache__/__init__.cpython-314.pyc b/plugins/component_table/__pycache__/__init__.cpython-314.pyc deleted file mode 100644 index 8604311..0000000 Binary files a/plugins/component_table/__pycache__/__init__.cpython-314.pyc and /dev/null differ