Commit e3c75327 authored by Victor Ananjevsky's avatar Victor Ananjevsky

change search keybinding from ctrl+s to ctrl+f in text-info dialog

parent 14c82eb5
......@@ -145,7 +145,7 @@ show_search ()
static gboolean
key_press_cb (GtkWidget * w, GdkEventKey * key, gpointer data)
{
if ((key->state & GDK_CONTROL_MASK) && (key->keyval == GDK_KEY_S || key->keyval == GDK_KEY_s))
if ((key->state & GDK_CONTROL_MASK) && (key->keyval == GDK_KEY_F || key->keyval == GDK_KEY_f))
{
show_search ();
return TRUE;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment