mirror of
https://github.com/Gnucash/gnucash.git
synced 2025-02-25 18:55:30 -06:00
Bug 797052 - Autofill Selection is Corrupted After Clicking Description
Ignore modifier keypresses.
This commit is contained in:
parent
3475939bd7
commit
fd05616b38
@ -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.
|
||||||
*/
|
*/
|
||||||
|
Loading…
Reference in New Issue
Block a user