aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn Ankarström <john@ankarstrom.se>2021-06-09 12:56:41 +0200
committerJohn Ankarström <john@ankarstrom.se>2021-06-09 12:56:41 +0200
commit13329639344009a67a4f45759f1106182c2925e3 (patch)
tree7dd44683cf40179aa8ee90b809e3393e3a6d82a0
parent177085b47d2234442867b42288a4a19852427d94 (diff)
downloadpatches-13329639344009a67a4f45759f1106182c2925e3.tar.gz
Add sys/utils/sysutils/rox/patch-return-open-window
-rw-r--r--sysutils/rox/patch-return-open-window15
1 files changed, 15 insertions, 0 deletions
diff --git a/sysutils/rox/patch-return-open-window b/sysutils/rox/patch-return-open-window
new file mode 100644
index 0000000..9014557
--- /dev/null
+++ b/sysutils/rox/patch-return-open-window
@@ -0,0 +1,15 @@
+$NetBSD
+
+Don't open directory in same window on Return.
+
+--- ROX-Filer/src/filer.c.orig 2021-06-09 12:43:32.325252372 +0200
++++ ROX-Filer/src/filer.c
+@@ -989,8 +989,6 @@ static void return_pressed(FilerWindow *filer_window, GdkEventKey *event)
+ flags |= OPEN_SHIFT;
+ if (event->state & GDK_MOD1_MASK)
+ flags |= OPEN_CLOSE_WINDOW;
+- else
+- flags |= OPEN_SAME_WINDOW;
+
+ filer_openitem(filer_window, &iter, flags);
+ }