Record a couple of user suggestions for things to do with gnucash's

gtkrc file.


git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@15756 57a11ea4-9604-0410-9ed3-97b8803252fd
This commit is contained in:
David Hampton 2007-03-26 03:02:55 +00:00
parent eab98d53f8
commit 498c193a63

View File

@ -169,3 +169,29 @@ widget "GncMainWindow.*.header_color" style : highest "gnc-register-header"
widget "GncMainWindow.*.primary_color" style : highest "gnc-register-primary"
widget "GncMainWindow.*.secondary_color" style : highest "gnc-register-secondary"
widget "GncMainWindow.*.split_color" style : highest "gnc-register-split"
#
# From: calmar <mac@calmar.ws>
# Allow changing notebook tabs with vim next/prev keys.
#
binding "book" {
bind "<Control>k" {
"change-current-page" (1)
}
bind "<Control>j" {
"change-current-page" (-1)
}
}
class "GtkNotebook" binding "book"
#
# From: calmar <mac@calmar.ws>
# Use larger disclosure tiangles in all tree views.
#
style "wide-tree"
{
GtkTreeView::expander_size = 20
}
class "GtkTreeView" style "wide-tree"