From 9892741e7efd81b7e99201530c9c5e8a56081094 Mon Sep 17 00:00:00 2001 From: Dan Winship Date: Mon, 29 Oct 2001 22:25:43 +0000 Subject: Fix the focus check. It's not fb->message_list that has focus, it's one of * folder-browser.c (folder_browser_copy): Fix the focus check. It's not fb->message_list that has focus, it's one of its children. #13616. svn path=/trunk/; revision=14370 --- mail/ChangeLog | 6 ++++++ mail/folder-browser.c | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/mail/ChangeLog b/mail/ChangeLog index 29e6c6cf56..d9c68dd216 100644 --- a/mail/ChangeLog +++ b/mail/ChangeLog @@ -1,3 +1,9 @@ +2001-10-29 Dan Winship + + * folder-browser.c (folder_browser_copy): Fix the focus check. + It's not fb->message_list that has focus, it's one of its + children. #13616. + 2001-10-29 * mail-folder-cache.c (store_folder_renamed): Sort the folder diff --git a/mail/folder-browser.c b/mail/folder-browser.c index 8e79e6467e..fcd54e528a 100644 --- a/mail/folder-browser.c +++ b/mail/folder-browser.c @@ -693,7 +693,7 @@ folder_browser_copy (GtkWidget *menuitem, FolderBrowser *fb) cut = menuitem == NULL; - if (!GTK_WIDGET_HAS_FOCUS (fb->message_list)) { + if (GTK_WIDGET_HAS_FOCUS (fb->mail_display->html)) { /* Copy text from the HTML Engine */ html_engine_copy (fb->mail_display->html->engine); return; -- cgit v1.2.3