diff --git a/chrome/content/zotero/preferences/preferences_general.js b/chrome/content/zotero/preferences/preferences_general.js
index 7d97fa2e9..ec129753c 100644
--- a/chrome/content/zotero/preferences/preferences_general.js
+++ b/chrome/content/zotero/preferences/preferences_general.js
@@ -34,6 +34,14 @@ Zotero_Preferences.General = {
'zotero.preferences.launchNonNativeFiles', Zotero.appName
);
}
+
+ // Only show icon options for Firefox <29
+ if (Zotero.platformMajorVersion < 29) {
+ let statusBarRow = document.getElementById('zotero-prefpane-general-statusBarIcon-row');
+ if (statusBarRow) {
+ statusBarRow.hidden = false;
+ }
+ }
},
/**
diff --git a/chrome/content/zotero/preferences/preferences_general_firefox.xul b/chrome/content/zotero/preferences/preferences_general_firefox.xul
index 197f5bf01..d658e35f7 100644
--- a/chrome/content/zotero/preferences/preferences_general_firefox.xul
+++ b/chrome/content/zotero/preferences/preferences_general_firefox.xul
@@ -48,7 +48,7 @@
-
+