Hi,
I'm not happy that this bug has been there for so long and still not
solved. Today, I got a little time to give it a try. I think I got a
workaround for it. It may not be the perfect fix, though.
In src/layout_util.c function layout_key_press_cb:
add cases for "+", "=", "[", "]"
and add
if (event->state & GDK_CONTROL_MASK) {
switch (event->keyval)
{
case 'P': case 'p':
info_window_new(layout_image_get_path(lw), NULL);
break;
case 'Q': case 'q':
exit_gqview();
return FALSE;
break;
}
}
for control events.
The other shortcuts may also implemented too.
It works for me at least.
Thanks,
James
--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]