From e8b6e726f6e023a46e23c982ba7b3f76f0b657cb Mon Sep 17 00:00:00 2001
From: Aleksander Machniak <alec@alec.pl>
Date: Sat, 26 Mar 2016 09:02:57 -0400
Subject: [PATCH] Add message menu with viewsource and edit actions in message/rfc822 preview

---
 program/js/app.js |    7 ++++---
 1 files changed, 4 insertions(+), 3 deletions(-)

diff --git a/program/js/app.js b/program/js/app.js
index 00028f7..72c0b03 100644
--- a/program/js/app.js
+++ b/program/js/app.js
@@ -341,8 +341,9 @@
         }
         else if (this.env.action == 'get') {
           this.enable_command('download', 'print', true);
-          if (this.env.mimetype == 'message/rfc822') {
-            this.enable_command('reply', 'reply-all', 'forward', 'forward-inline', 'forward-attachment', true);
+          if (this.env.is_message) {
+            this.enable_command('reply', 'reply-all', 'edit', 'viewsource',
+              'forward', 'forward-inline', 'forward-attachment', true);
             if (this.env.list_post)
               this.enable_command('reply-list', true);
           }
@@ -1217,7 +1218,7 @@
             this.open_window(this.env.comm_path + url, true, true);
           }
         }
-        else if (this.env.action == 'get' && this.env.mimetype != 'message/rfc822') {
+        else if (this.env.action == 'get' && !this.env.is_message) {
           this.gui_objects.messagepartframe.contentWindow.print();
         }
         else if (uid = this.get_single_uid()) {

--
Gitblit v1.9.1