talons

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

commit 464b6bb2c4f29381146f2616e5c6556809b8b269
parent fad20209fe372082145c8a443f6236a3e9405a17
Author: wwp <subscript@free.fr>
Date:   Fri,  1 Apr 2022 14:04:04 +0200

Fix weird logic with the 'Edit filter action' dialog.

Diffstat:
Msrc/prefs_actions.c | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/prefs_actions.c b/src/prefs_actions.c @@ -1312,8 +1312,8 @@ static void prefs_action_filterbtn_cb(GtkWidget *widget, gpointer data) alertpanel(_("Entry was modified"), _("Opening the filter action dialog will clear current modifications " "of the command-line."), - NULL, _("_Cancel"), NULL, _("_Continue editing"), NULL, NULL, - ALERTFOCUS_SECOND) != G_ALERTDEFAULT) { + NULL, _("_Close"), NULL, _("_Open"), NULL, NULL, + ALERTFOCUS_SECOND) == G_ALERTDEFAULT) { return; } tokens = g_strsplit_set(action_str, "{}", 5);