Bug 796944 - Tab navigation From Company Address field in New Book Options

Disallow the use of tabs in all dialogue options text views. This is
mainly used for notes fields and CSS so should not really be an issue.
This commit is contained in:
Robert Fewell 2018-12-03 10:55:36 +00:00
parent 9e104ebc40
commit 5bc6922c14

View File

@ -2505,6 +2505,7 @@ gnc_option_set_ui_widget_text (GNCOption *option, GtkBox *page_box,
value = gtk_text_view_new();
gtk_text_view_set_wrap_mode(GTK_TEXT_VIEW(value), GTK_WRAP_WORD);
gtk_text_view_set_editable(GTK_TEXT_VIEW(value), TRUE);
gtk_text_view_set_accepts_tab (GTK_TEXT_VIEW(value), FALSE);
gtk_container_add (GTK_CONTAINER (scroll), value);
gnc_option_set_widget (option, value);