www

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | Submodules | README | LICENSE

commit 737f54a70c703d57dc842f8fbf23b269a10a4790
parent 6c58389563607fea62b9b8fdc6d207c47f60e628
Author: Dan Stillman <dstillman@zotero.org>
Date:   Tue, 28 Feb 2017 03:33:00 -0500

Fix Edit Bibliography window

Diffstat:
Mchrome/content/zotero/integration/editBibliographyDialog.xul | 58++++++++++++++++++++++++++++++++--------------------------
1 file changed, 32 insertions(+), 26 deletions(-)

diff --git a/chrome/content/zotero/integration/editBibliographyDialog.xul b/chrome/content/zotero/integration/editBibliographyDialog.xul @@ -73,32 +73,38 @@ <treechildren/> </tree> - <tree id="zotero-items-tree" - flex="1" hidecolumnpicker="true" seltype="multiple" - onselect="Zotero_Bibliography_Dialog.treeItemSelected();"> - <treecols> - <treecol - id="zotero-items-column-title" primary="true" - label="&zotero.items.title_column;" - flex="4" persist="width ordinal hidden sortActive sortDirection"/> - <splitter class="tree-splitter"/> - <treecol - id="zotero-items-column-firstCreator" - label="&zotero.items.creator_column;" - flex="1" persist="width ordinal hidden sortActive sortDirection"/> - <splitter class="tree-splitter"/> - <treecol - id="zotero-items-column-dateAdded" hidden="true" - label="&zotero.items.dateAdded_column;" - flex="1" persist="width ordinal hidden sortActive sortDirection"/> - <splitter class="tree-splitter"/> - <treecol - id="zotero-items-column-dateModified" hidden="true" - label="&zotero.items.dateModified_column;" - flex="1" persist="width ordinal hidden sortActive sortDirection"/> - </treecols> - <treechildren/> - </tree> + <deck id="zotero-items-pane-content" selectedIndex="0" flex="1"> + <tree id="zotero-items-tree" + flex="1" hidecolumnpicker="true" seltype="multiple" + onselect="Zotero_Bibliography_Dialog.treeItemSelected();"> + <treecols> + <treecol + id="zotero-items-column-title" primary="true" + label="&zotero.items.title_column;" + flex="4" persist="width ordinal hidden sortActive sortDirection"/> + <splitter class="tree-splitter"/> + <treecol + id="zotero-items-column-firstCreator" + label="&zotero.items.creator_column;" + flex="1" persist="width ordinal hidden sortActive sortDirection"/> + <splitter class="tree-splitter"/> + <treecol + id="zotero-items-column-dateAdded" hidden="true" + label="&zotero.items.dateAdded_column;" + flex="1" persist="width ordinal hidden sortActive sortDirection"/> + <splitter class="tree-splitter"/> + <treecol + id="zotero-items-column-dateModified" hidden="true" + label="&zotero.items.dateModified_column;" + flex="1" persist="width ordinal hidden sortActive sortDirection"/> + </treecols> + <treechildren/> + </tree> + + <!-- Label for displaying messages when items pane is hidden + (e.g. "Advanced search mode — press Enter to search.")--> + <vbox id="zotero-items-pane-message-box" pack="center" align="center"/> + </deck> </hbox> </vbox>