Bug 797052 - Autofill Selection is Corrupted After Clicking Description

Ignore modifier keypresses.
This commit is contained in:
John Ralls 2020-05-03 15:17:12 -07:00
parent 3475939bd7
commit fd05616b38

View File

@ -1799,6 +1799,9 @@ gnucash_sheet_key_press_event_internal (GtkWidget *widget, GdkEventKey *event)
sheet = GNUCASH_SHEET (widget); sheet = GNUCASH_SHEET (widget);
table = sheet->table; table = sheet->table;
/* Don't respond to stand-alone modifier keys. */
if (event->is_modifier)
return TRUE;
/* Initially sync the selection, the user might have adjusted it with the /* Initially sync the selection, the user might have adjusted it with the
* mouse. * mouse.
*/ */