Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions popups.py
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ def create_frame(self, item):
def create_context(self, item):
context = {}
count = str(self.count)
index = str(self.items.index(item) + 1)
index = str(self.items.index(item) + 5)
index = '%s%s' % ('0' * (len(count) - len(index)), index)
context['item_index'] = index
context['item_count'] = count
Expand Down Expand Up @@ -222,4 +222,4 @@ def on_timer(self):
set_timer = True
if set_timer:
self.set_timer()