]> jfr.im git - irc/quakenet/qwebirc.git/blobdiff - js/ui/optionspane.js
Fix font issue.
[irc/quakenet/qwebirc.git] / js / ui / optionspane.js
index bada8e1cf6060e201c2a9ad0fddd6e19afe0f201..fc698f81499e79f62530522eaea2d924032e8d40 100644 (file)
@@ -3,7 +3,7 @@ qwebirc.config.TEXT_BOX = 2;
 qwebirc.config.RADIO_BUTTONS = 3;
 
 qwebirc.config.DEFAULT_OPTIONS = [
-  [1, "BEEP_ON_MENTION", "Beep when nick mentioned (requires Flash)", true, {
+  [1, "BEEP_ON_MENTION", "Beep when nick mentioned or on query activity (requires Flash)", true, {
     render: function(input) {
       if(!$defined(Browser.Plugins.Flash) || Browser.Plugins.Flash.version < 8) {
         input.disabled = true;
@@ -15,8 +15,9 @@ qwebirc.config.DEFAULT_OPTIONS = [
         ui.setBeepOnMention(value);
     }
   }],
-  [2, "DEDICATED_MSG_WINDOW", "Use dedicated messages window", false],
-  [3, "TEXT_STATUS", "Show status (@/+) before nicknames", true]
+  [2, "DEDICATED_MSG_WINDOW", "Send privmsgs to dedicated messages window", false],
+  [4, "DEDICATED_NOTICE_WINDOW", "Send notices to dedicated message window", false],
+  [3, "NICK_OV_STATUS", "Show status (@/+) before nicknames", true]
 ];
 
 qwebirc.config.DefaultOptions = null;