gnucash maint: Multiple changes pushed

John Ralls jralls at code.gnucash.org
Sun Dec 16 19:35:24 EST 2018


Updated	 via  https://github.com/Gnucash/gnucash/commit/2524482b (commit)
	 via  https://github.com/Gnucash/gnucash/commit/f5be842c (commit)
	from  https://github.com/Gnucash/gnucash/commit/9921ab22 (commit)



commit 2524482b551d94407ca882c932f30f0f0fdc2fd9
Author: John Ralls <jralls at ceridwen.us>
Date:   Sun Dec 16 16:31:43 2018 -0800

    Bug 796883 - Register text oddities
    
    HOME and END need to be treated like right and left arrow keys.

diff --git a/gnucash/register/register-gnome/gnucash-sheet.c b/gnucash/register/register-gnome/gnucash-sheet.c
index 1e22ff2..9715fe6 100644
--- a/gnucash/register/register-gnome/gnucash-sheet.c
+++ b/gnucash/register/register-gnome/gnucash-sheet.c
@@ -1809,6 +1809,8 @@ gnucash_sheet_key_press_event_internal (GtkWidget *widget, GdkEventKey *event)
         case GDK_KEY_Right:
         case GDK_KEY_KP_Left:
         case GDK_KEY_Left:
+        case GDK_KEY_Home:
+        case GDK_KEY_End:
 	    /* Clear the saved selection, we're not using it. */
 	    sheet->end_sel = sheet->start_sel;
 	    pass_on = TRUE;

commit f5be842c2e59233a80230057d210ff7ee1d2713a
Author: John Ralls <jralls at ceridwen.us>
Date:   Sun Dec 16 16:31:06 2018 -0800

    boost needs bcrypt.lib for all versions of Windows.

diff --git a/libgnucash/engine/CMakeLists.txt b/libgnucash/engine/CMakeLists.txt
index 2da9b05..d90d3ee 100644
--- a/libgnucash/engine/CMakeLists.txt
+++ b/libgnucash/engine/CMakeLists.txt
@@ -231,7 +231,7 @@ add_library (gncmod-engine
 
 # Add dependency on swig-runtime.h and iso-4217-currencies.c
 add_dependencies (gncmod-engine swig-runtime-h iso-4217-c)
-if (WIN32 AND ${CMAKE_HOST_SYSTEM_VERSION} VERSION_LESS "10.0")
+if (WIN32)
   set(BCRYPT "bcrypt.lib")
 else()
   set(BCRYPT "")



Summary of changes:
 gnucash/register/register-gnome/gnucash-sheet.c | 2 ++
 libgnucash/engine/CMakeLists.txt                | 2 +-
 2 files changed, 3 insertions(+), 1 deletion(-)



More information about the gnucash-changes mailing list