Increment tab number in group name, so they don't start at zero. Closes LP #382156
This commit is contained in:
parent
20b25c6c5d
commit
78594bfd62
|
@ -1439,7 +1439,7 @@ text/plain
|
||||||
groupname = notebooktablabel.get_title()
|
groupname = notebooktablabel.get_title()
|
||||||
|
|
||||||
if groupname == "":
|
if groupname == "":
|
||||||
groupname = "Tab %d" % pagenum
|
groupname = "Tab %d" % (pagenum + 1)
|
||||||
|
|
||||||
self.add_group(groupname)
|
self.add_group(groupname)
|
||||||
for term in terms:
|
for term in terms:
|
||||||
|
|
Loading…
Reference in New Issue