Skip to content

Commit

Permalink
Bug 796883 - Register text oddities
Browse files Browse the repository at this point in the history
HOME and END need to be treated like right and left arrow keys.
  • Loading branch information
jralls committed Dec 17, 2018
1 parent f5be842 commit 2524482
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions gnucash/register/register-gnome/gnucash-sheet.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit 2524482

Please sign in to comment.