From dd221e409c718cd527d37e4506e9bb2e40f31a11 Mon Sep 17 00:00:00 2001 From: Robert Fewell <14uBobIT@gmail.com> Date: Thu, 16 Jan 2025 10:50:20 +0000 Subject: [PATCH] Bug 799465 - Register Filter Today radio buttons don't work correctly There was a typo in the callback for identifying the required widget to get the correct value as start_date_today instead of end_date_today. --- gnucash/gnome/gnc-plugin-page-register.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gnucash/gnome/gnc-plugin-page-register.cpp b/gnucash/gnome/gnc-plugin-page-register.cpp index ec9de039a8..fddebc73d9 100644 --- a/gnucash/gnome/gnc-plugin-page-register.cpp +++ b/gnucash/gnome/gnc-plugin-page-register.cpp @@ -2845,7 +2845,7 @@ get_filter_times (GncPluginPageRegister* page) else { if (gtk_toggle_button_get_active (GTK_TOGGLE_BUTTON ( - priv->fd.start_date_today))) + priv->fd.end_date_today))) { priv->fd.end_time = gnc_time64_get_today_end(); }