[Commits] [SCM] claws branch, master, updated. 3.16.0-11-g43ceacd
mones at claws-mail.org
mones at claws-mail.org
Sun Jan 14 16:29:00 CET 2018
The branch, master has been updated
via 43ceacd3deaba3376f2acd06fd82052ac9757d14 (commit)
from 36103cc2bc933d623738ec8a3b82b246196e0f43 (commit)
Summary of changes:
src/gtk/logwindow.c | 16 +++++++++++++---
1 file changed, 13 insertions(+), 3 deletions(-)
- Log -----------------------------------------------------------------
commit 43ceacd3deaba3376f2acd06fd82052ac9757d14
Author: Ricardo Mones <ricardo at mones.org>
Date: Sun Jan 14 16:26:44 2018 +0100
Add "Go to last error" to log window context menu
This functionality was already implemented, this only makes it
available to the user through a new menu option.
diff --git a/src/gtk/logwindow.c b/src/gtk/logwindow.c
index 8faaf81..07d9534 100644
--- a/src/gtk/logwindow.c
+++ b/src/gtk/logwindow.c
@@ -1,6 +1,6 @@
/*
* Claws Mail -- a GTK+ based, lightweight, and fast e-mail client
- * Copyright (C) 1999-2016 Hiroyuki Yamamoto and the Claws Mail team
+ * Copyright (C) 1999-2018 Hiroyuki Yamamoto and the Claws Mail team
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
@@ -14,7 +14,6 @@
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
- *
*/
#ifdef HAVE_CONFIG_H
@@ -432,6 +431,11 @@ static void log_window_clear(GtkWidget *widget, LogWindow *logwin)
gtk_text_buffer_delete(textbuf, &start_iter, &end_iter);
}
+static void log_window_go_to_last_error(GtkWidget *widget, LogWindow *logwin)
+{
+ log_window_jump_to_error(logwin);
+}
+
static void log_window_popup_menu_extend(GtkTextView *textview,
GtkMenu *menu, LogWindow *logwin)
{
@@ -443,7 +447,13 @@ static void log_window_popup_menu_extend(GtkTextView *textview,
menuitem = gtk_separator_menu_item_new();
gtk_menu_shell_prepend(GTK_MENU_SHELL(menu), menuitem);
gtk_widget_show(menuitem);
-
+
+ menuitem = gtk_menu_item_new_with_mnemonic(_("_Go to last error"));
+ g_signal_connect(G_OBJECT(menuitem), "activate",
+ G_CALLBACK(log_window_go_to_last_error), logwin);
+ gtk_menu_shell_prepend(GTK_MENU_SHELL(menu), menuitem);
+ gtk_widget_show(menuitem);
+
menuitem = gtk_menu_item_new_with_mnemonic(_("Clear _Log"));
g_signal_connect(G_OBJECT(menuitem), "activate",
G_CALLBACK(log_window_clear), logwin);
-----------------------------------------------------------------------
hooks/post-receive
--
Claws Mail
More information about the Commits
mailing list