mirror of https://github.com/GNOME/gimp.git
give an example (commented out) how to change the F1 help binding. Fixes
2003-01-06 Michael Natterer <mitch@gimp.org> * etc/gtkrc_user: give an example (commented out) how to change the F1 help binding. Fixes bug #6920.
This commit is contained in:
parent
b9494c2583
commit
8fd6272d61
|
@ -1,3 +1,8 @@
|
|||
2003-01-06 Michael Natterer <mitch@gimp.org>
|
||||
|
||||
* etc/gtkrc_user: give an example (commented out) how to change
|
||||
the F1 help binding. Fixes bug #6920.
|
||||
|
||||
2003-01-06 Sven Neumann <sven@gimp.org>
|
||||
Michael Natterer <mitch@gimp.org>
|
||||
|
||||
|
|
|
@ -35,7 +35,20 @@ style "gimp-small-style"
|
|||
GimpEditor::button_icon_size = menu
|
||||
}
|
||||
|
||||
# class "GtkWidget" style "gimp-small-style"
|
||||
# Example keybinding remapping F2 -> help
|
||||
|
||||
binding "gimp-help-binding"
|
||||
{
|
||||
bind "F2" { "show-help" (255) }
|
||||
bind "KP_F2" { "show-help" (255) }
|
||||
bind "<shift>F2" { "show-help" (whats-this) }
|
||||
bind "<shift>KP_F2" { "show-help" (whats-this) }
|
||||
bind "<ctrl>F2" { "show-help" (tooltip) }
|
||||
bind "<ctrl>KP_F2" { "show-help" (tooltip) }
|
||||
}
|
||||
|
||||
# class "GtkWidget" style "gimp-small-style"
|
||||
# class "GtkWidget" binding "gimp-help-binding"
|
||||
|
||||
|
||||
# The dock separator is configurable using it's name:
|
||||
|
|
Loading…
Reference in New Issue