Fix order of story structure columns in CSV export (#2313)
This commit is contained in:
@@ -784,7 +784,8 @@ class GuiOutlineTree(QTreeWidget):
|
|||||||
):
|
):
|
||||||
if novIdx.level != "H0" and (nwItem := SHARED.project.tree[tHandle]):
|
if novIdx.level != "H0" and (nwItem := SHARED.project.tree[tHandle]):
|
||||||
refs = SHARED.project.index.getReferences(tHandle, sTitle)
|
refs = SHARED.project.index.getReferences(tHandle, sTitle)
|
||||||
story = {k: v for k, v in novIdx.comments.items() if k in sMatch}.values()
|
comments = dict(novIdx.comments.items())
|
||||||
|
story = [comments.get(k, "") for k in sMatch]
|
||||||
data.append([
|
data.append([
|
||||||
novIdx.level,
|
novIdx.level,
|
||||||
novIdx.title,
|
novIdx.title,
|
||||||
|
|||||||
Reference in New Issue
Block a user