Allow to desactivate permantly the right panel
With zotero 4.0 it is possible to not display the right panel (the one with the folders created by the user) by dragging it to the left (or clicking exactly in the middle of the elevator). The problem is that change is not persistent and you have to do it at every startup.
I think it should be a good thing to allow this right panel to be always hidden (like the tags panel : it is persistent, that is to say if you hide it once, you have to display it again by hand).
A lot of people do not use folders for organize their bibliographies. In human sciences, it is often hard to choose to put a reference inside x or x folders (because of the complexity of the content).
I think it should be a good thing to allow this right panel to be always hidden (like the tags panel : it is persistent, that is to say if you hide it once, you have to display it again by hand).
A lot of people do not use folders for organize their bibliographies. In human sciences, it is often hard to choose to put a reference inside x or x folders (because of the complexity of the content).
When the tree is collapsed, we should also probably collapse the toolbar that is meant for the collection tree (those buttons don't make sense without the tree). Which means we would need to do some restructuring of the toolbars. While we're at it though, I would like to make the toolbars more modular. I.e. I would like to be able to add/hide buttons from the toolbars (particularly, I'd like to introduce a recursive collections toggle, but other functions could be added as optional as well). The whole restructuring also goes along pretty well with some of the bugs on the issue tracker (e.g. https://github.com/zotero/zotero/issues/371)
Is there a way to collapse the _right_ pane (i.e. the one with biblio info, notes, tags, etc.)?
I've asked this before, and elsewhere, but I'm stuck using my little laptop for a few weeks and the right-hand pane takes up almost half the display width so if there's a work-around that would be useful for now!
$('#zotero-item-pane').style.display = "none"
(e.g. create a bookmarklet). After a page reload you will have again all three panes.https://www.zotero.org/support/forum_guidelines#don_t_create_redundant_threads
Thank you for the tip, but I'm wondering if you'd provide a little more how-to detail. I'm not a total dunce technically, but am unfamiliar with running scripts like this. I did install the Firebug extension, and I did try, but I'm not at all sure I was doing it right (or at all).
I'm also wondering if running the script in Firefox affects Zotero stand-alone. I normally have both running, but use Zotero in stand-alone mode because I find it easier that way.
And, just in passing and in regard to the topic of this thread, another 60 hours or so of using Zotero intensively on a small screen have not minimized this issue for me. So I definitely agree that a solid fix would be very worthwhile.
But in the meantime, thanks very much for the help, zuphilip!
F2::
Send {F12}
Sleep 100
Sendraw $('#zotero-item-pane').style.display = "none"
Send {Enter}
Send {F12}
Return
You can, of course, change F2 to whatever hotkey you want. If you want to make sure this only triggers within Firefox, enclose the code within
#IfWinActive, ahk_class MozillaWindowClass
#IfWinActive
Cheers,
Tom
Thanks again for the quick reply!
S.