only store the last 5 events
This commit is contained in:
parent
1c40cb3852
commit
7e3bcefd19
@ -239,6 +239,10 @@ class MainWindow(QMainWindow):
|
|||||||
fname = fnConstructor(eventID)
|
fname = fnConstructor(eventID)
|
||||||
if eventID != current and QFile.exists(fname):
|
if eventID != current and QFile.exists(fname):
|
||||||
recentEvents.append(eventID)
|
recentEvents.append(eventID)
|
||||||
|
recentEvents.reverse()
|
||||||
|
self.recentEvents = recentEvents[0:5]
|
||||||
|
settings = QSettings()
|
||||||
|
settings.setValue()
|
||||||
if recentEvents:
|
if recentEvents:
|
||||||
for i, eventID in enumerate(recentEvents):
|
for i, eventID in enumerate(recentEvents):
|
||||||
fname = fnConstructor(eventID)
|
fname = fnConstructor(eventID)
|
||||||
|
Loading…
Reference in New Issue
Block a user