mirror of
https://github.com/Gnucash/gnucash.git
synced 2025-02-25 18:55:30 -06:00
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:
parent
9e104ebc40
commit
5bc6922c14
@ -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);
|
||||
|
Loading…
Reference in New Issue
Block a user