From bda3462082cd7ad78255e1a5447339443fa1505c Mon Sep 17 00:00:00 2001 From: MrS0m30n3 Date: Fri, 4 Nov 2016 20:20:27 +0200 Subject: [PATCH] Remove LC_SINGLE_SEL style --- youtube_dl_gui/mainframe.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/youtube_dl_gui/mainframe.py b/youtube_dl_gui/mainframe.py index 04876d2..de4f069 100644 --- a/youtube_dl_gui/mainframe.py +++ b/youtube_dl_gui/mainframe.py @@ -274,7 +274,7 @@ class MainFrame(wx.Frame): self._download_text = self._create_statictext(self.DOWNLOAD_LIST_LABEL) self._status_list = ListCtrl(self.STATUSLIST_COLUMNS, parent=self._panel, - style=wx.LC_REPORT | wx.LC_HRULES | wx.LC_VRULES | wx.LC_SINGLE_SEL) + style=wx.LC_REPORT | wx.LC_HRULES | wx.LC_VRULES) # Dictionary to store all the buttons self._buttons = {}