talons

Fork of Claws Mail https://www.claws-mail
Log | Files | Refs | README | LICENSE

commit dea435bf8b8c0fdeb8b89c8a7a400c78d3ada6f0
parent c640b4c03b964294a56ea467abdfffb224f18f76
Author: paul <paul@claws-mail.org>
Date:   Fri, 29 Jan 2021 13:03:46 +0000

allow 'remove references' when re-editing a msg

Diffstat:
Msrc/compose.c | 4+++-
1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/src/compose.c b/src/compose.c @@ -1,6 +1,6 @@ /* * Claws Mail -- a GTK+ based, lightweight, and fast e-mail client - * Copyright (C) 1999-2020 the Claws Mail team and Hiroyuki Yamamoto + * Copyright (C) 1999-2021 the Claws Mail team and Hiroyuki Yamamoto * * 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 @@ -2377,6 +2377,8 @@ Compose *compose_reedit(MsgInfo *msginfo, gboolean batch) compose = compose_create(account, msginfo->folder, COMPOSE_REEDIT, batch); + cm_toggle_menu_set_active_full(compose->ui_manager, "Menu/Options/RemoveReferences", FALSE); + cm_menu_set_sensitive_full(compose->ui_manager, "Menu/Options/RemoveReferences", TRUE); cm_toggle_menu_set_active_full(compose->ui_manager, "Menu/Edit/AutoWrap", autowrap); cm_toggle_menu_set_active_full(compose->ui_manager, "Menu/Edit/AutoIndent", autoindent); compose->autowrap = autowrap;