commit 37ac6b2e0cdf72754e49bd62fbb9ee4e8be9bb3d
parent 900c2461fae2868960f216578882f5307ca3430c
Author: wwp <subscript@free.fr>
Date: Fri, 1 Apr 2022 13:59:58 +0200
Fix weird logic with the 'Edit filter action' dialog.
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/prefs_actions.c b/src/prefs_actions.c
@@ -1321,7 +1321,7 @@ 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."),
- GTK_STOCK_CANCEL, _("_Continue editing"), NULL, ALERTFOCUS_SECOND) != G_ALERTDEFAULT) {
+ GTK_STOCK_CLOSE, GTK_STOCK_OPEN, NULL, ALERTFOCUS_SECOND) == G_ALERTDEFAULT) {
return;
}
tokens = g_strsplit_set(action_str, "{}", 5);