summaryrefslogtreecommitdiff
path: root/app-text/epdfview/files/vikeybindings.patch
diff options
context:
space:
mode:
authorNick White <git@njw.me.uk>2010-06-09 14:23:06 +0100
committerNick White <git@njw.me.uk>2010-06-09 14:23:06 +0100
commitbfa692cf491185083672bf476f48d1af37153a53 (patch)
tree0edb1778e40c948c75c94abd437aa1943e14e3d1 /app-text/epdfview/files/vikeybindings.patch
parente1d6f350043db79ebca79a373f4ae84714d75e5c (diff)
downloadnjw-gentoo-local-bfa692cf491185083672bf476f48d1af37153a53.tar.bz2
njw-gentoo-local-bfa692cf491185083672bf476f48d1af37153a53.zip
Removed a few more unused ebuilds
Diffstat (limited to 'app-text/epdfview/files/vikeybindings.patch')
-rw-r--r--app-text/epdfview/files/vikeybindings.patch42
1 files changed, 0 insertions, 42 deletions
diff --git a/app-text/epdfview/files/vikeybindings.patch b/app-text/epdfview/files/vikeybindings.patch
deleted file mode 100644
index 2e4b4d4..0000000
--- a/app-text/epdfview/files/vikeybindings.patch
+++ /dev/null
@@ -1,42 +0,0 @@
-Index: src/gtk/PageView.cxx
-===================================================================
---- src/gtk/PageView.cxx (revision 296)
-+++ src/gtk/PageView.cxx (revision 300)
-@@ -572,23 +572,37 @@
- {
- case GDK_Left:
- case GDK_KP_Left:
-+ case GDK_h:
- direction = GTK_SCROLL_STEP_LEFT;
- horizontal = TRUE;
- break;
-
- case GDK_Right:
- case GDK_KP_Right:
-+ case GDK_l:
- horizontal = TRUE;
- direction = GTK_SCROLL_STEP_RIGHT;
- break;
-
- case GDK_Up:
- case GDK_KP_Up:
-+ case GDK_k:
-+ if ( position == adjustment->lower )
-+ {
-+ pter->scrollToPreviousPage ();
-+ return TRUE;
-+ }
- direction = GTK_SCROLL_STEP_UP;
- break;
-
- case GDK_Down:
- case GDK_KP_Down:
-+ case GDK_j:
-+ if ( position == ( adjustment->upper - adjustment->page_size) )
-+ {
-+ pter->scrollToNextPage ();
-+ return TRUE;
-+ }
- direction = GTK_SCROLL_STEP_DOWN;
- break;
-