[bugfix] forgot to split * in getFromPath
This commit is contained in:
parent
e68b634f25
commit
93bdaa8998
@ -3575,7 +3575,7 @@ class TuneAutopicker(QWidget):
|
|||||||
if index == -1:
|
if index == -1:
|
||||||
index += 1
|
index += 1
|
||||||
nevents = self.eventBox.model().rowCount()
|
nevents = self.eventBox.model().rowCount()
|
||||||
path = self.eventBox.itemText(index)
|
path = self.eventBox.itemText(index).split('*')[0]
|
||||||
if project.getEventFromPath(path).isTestEvent():
|
if project.getEventFromPath(path).isTestEvent():
|
||||||
for index in range(nevents):
|
for index in range(nevents):
|
||||||
path = self.eventBox.itemText(index)
|
path = self.eventBox.itemText(index)
|
||||||
|
Loading…
Reference in New Issue
Block a user