From 64542a4158a3c3ce7884bfdae50e9f7e917b2337 Mon Sep 17 00:00:00 2001
From: Hib Eris <hib@hiberis.nl>
Date: Tue, 22 Dec 2009 11:17:13 +0100
Subject: [PATCH] [windows] Gray-out help contents menu option on Windows

Disable help because help functionality is not yet ported to Windows.
See bgo#604703.
---
 shell/ev-window.c | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/shell/ev-window.c b/shell/ev-window.c
index 95c21910..bee7d341 100644
--- a/shell/ev-window.c
+++ b/shell/ev-window.c
@@ -431,6 +431,11 @@ ev_window_setup_action_sensitivity (EvWindow *ev_window)
 	ev_window_set_action_sensitive (ev_window, ZOOM_CONTROL_ACTION,  has_pages);
 	ev_window_set_action_sensitive (ev_window, NAVIGATION_ACTION,  FALSE);
 
+        /* Help menu */
+#ifdef G_OS_WIN32
+	ev_window_set_action_sensitive (ev_window, "HelpContents", FALSE);
+#endif
+
         ev_window_update_actions (ev_window);
 }
 
-- 
2.43.5