Skip to content

Commit

Permalink
Fix pressing "-" and "+" buttons in Styles pane from keyboard
Browse files Browse the repository at this point in the history
  • Loading branch information
dstillman committed Dec 30, 2016
1 parent 0757109 commit 5523dd5
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions chrome/content/zotero/preferences/preferences_cite.xul
Expand Up @@ -61,8 +61,9 @@
<label class="zotero-text-link"
value="&zotero.preferences.export.getAdditionalStyles;" flex="1"
onclick="Zotero_Preferences.Cite.openStylesPage(); event.preventDefault()"/>
<button disabled="true" id="styleManager-delete" label="-" onclick="Zotero_Preferences.Cite.deleteStyle()"/>
<button label="+" onclick="Zotero_Preferences.Cite.addStyle()"/>
<button disabled="true" id="styleManager-delete" label="-"
oncommand="Zotero_Preferences.Cite.deleteStyle()"/>
<button label="+" oncommand="Zotero_Preferences.Cite.addStyle()"/>
</hbox>
</groupbox>

Expand Down

0 comments on commit 5523dd5

Please sign in to comment.