Skip to content

Commit ecd3e13

Browse files
committed
Fixed bug on adding new rows / tags
1 parent a0318de commit ecd3e13

File tree

1 file changed

+4
-6
lines changed

1 file changed

+4
-6
lines changed

pysolo_db.py

+4-6
Original file line numberDiff line numberDiff line change
@@ -517,7 +517,7 @@ def PageBrowser(self, nb):
517517

518518
#add the listbox on the left side of the panel
519519
self.BrowsingData.append(wx.ListBox(panel,wx.ID_ANY))
520-
self.BrowsingData[-1].InsertItems([],0)
520+
self.BrowsingData[-1].InsertItems([''],0)
521521
self.BrowsingData[-1].Bind(wx.EVT_LISTBOX, self.OnChangeDAMentrySelection)
522522

523523
#put everything in a sizer and return this panel
@@ -712,9 +712,9 @@ def OnAddRow(self, event):
712712

713713
#Get the Tagname that the new row will inherit
714714
tag_name = self.GetTagName()
715-
if tag_name == 'All': tag_name = ''
715+
if tag_name == 'All': tag_name = None
716716

717-
self.DAMlist.AddRow(tag_name)
717+
self.DAMlist.AddRow(content = None, tag_name=tag_name)
718718

719719

720720
self.resetTablesSize()
@@ -1281,8 +1281,6 @@ def AddRecentFile(self):
12811281
SavePreferenceFile(userConfig, customUserConfig)
12821282

12831283

1284-
1285-
12861284
def updateTagList(self, selection=0):
12871285
"""
12881286
Reads all tags present in the current DAMlist
@@ -1294,7 +1292,7 @@ def updateTagList(self, selection=0):
12941292
all_tags = []
12951293
dl = self.DAMlist.GetData()
12961294
all_num = 'All (%s)' % len(dl)
1297-
for tag in zip(*dl)[13]:
1295+
for tag in (zip(*dl)[13]):
12981296
all_tags = all_tags + str(tag).split(';')
12991297

13001298
set_tags = list(set(all_tags))

0 commit comments

Comments
 (0)