1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2025-12-23 01:47:58 +01:00

fixed muttator to comply with new Thunderbird API

This commit is contained in:
Martin Stubenschrott
2008-11-30 12:01:24 +00:00
parent 7ffb52febd
commit a2d269d5d7
3 changed files with 9 additions and 6 deletions

View File

@@ -601,7 +601,7 @@ function Mail() //{{{
{
var value = gPrefBranch.getIntPref("mail.show_headers", 2);
gPrefBranch.setIntPref("mail.show_headers", value == 2 ? 1 : 2);
MsgReload();
ReloadMessage();
});
mappings.add(myModes, ["x"],
@@ -1034,7 +1034,7 @@ function Mail() //{{{
gPrefBranch.setBoolPref("mailnews.display.prefer_plaintext", values[value][0]);
gPrefBranch.setIntPref("mailnews.display.html_as", values[value][1]);
gPrefBranch.setIntPref("mailnews.display.disallow_mime_handlers", values[value][2]);
MsgReload();
ReloadMessage();
}
};
//}}}