summaryrefslogtreecommitdiff
path: root/community/lxterminal/shift-keybinds.patch
diff options
context:
space:
mode:
Diffstat (limited to 'community/lxterminal/shift-keybinds.patch')
-rw-r--r--community/lxterminal/shift-keybinds.patch39
1 files changed, 0 insertions, 39 deletions
diff --git a/community/lxterminal/shift-keybinds.patch b/community/lxterminal/shift-keybinds.patch
deleted file mode 100644
index ecef20318..000000000
--- a/community/lxterminal/shift-keybinds.patch
+++ /dev/null
@@ -1,39 +0,0 @@
-diff -ru lxterminal-0.1.11.orig/src/lxterminal.c lxterminal-0.1.11/src/lxterminal.c
---- lxterminal-0.1.11.orig/src/lxterminal.c 2011-07-27 23:07:54.000000000 +0200
-+++ lxterminal-0.1.11/src/lxterminal.c 2012-05-18 17:58:40.483588501 +0200
-@@ -77,9 +77,9 @@
- static void terminal_close_tab_activate_event(GtkAction * action, LXTerminal * terminal);
- static void terminal_close_tab_accelerator(LXTerminal * terminal, guint action, GtkWidget * item);
- static void terminal_copy_activate_event(GtkAction * action, LXTerminal * terminal);
--static void terminal_copy_accelerator(LXTerminal * terminal, guint action, GtkWidget * item);
-+static gboolean terminal_copy_accelerator(LXTerminal * terminal, guint action, GtkWidget * item);
- static void terminal_paste_activate_event(GtkAction * action, LXTerminal * terminal);
--static void terminal_paste_accelerator(LXTerminal * terminal, guint action, GtkWidget * item);
-+static gboolean terminal_paste_accelerator(LXTerminal * terminal, guint action, GtkWidget * item);
- static void terminal_name_tab_response_event(GtkWidget * dialog, gint response, LXTerminal * terminal);
- static void terminal_name_tab_activate_event(GtkAction * action, LXTerminal * terminal);
- static void terminal_name_tab_accelerator(LXTerminal * terminal, guint action, GtkWidget * item);
-@@ -433,9 +433,10 @@
- }
-
- /* Handler for accelerator <CTRL><SHIFT> C. Copy to the clipboard. */
--static void terminal_copy_accelerator(LXTerminal * terminal, guint action, GtkWidget * item)
-+static gboolean terminal_copy_accelerator(LXTerminal * terminal, guint action, GtkWidget * item)
- {
- terminal_copy_activate_event(NULL, terminal);
-+ return TRUE;
- }
-
- /* Handler for "activate" signal on Edit/Paste menu item.
-@@ -447,9 +448,10 @@
- }
-
- /* Handler for accelerator <CTRL><SHIFT> V. Paste from the clipboard. */
--static void terminal_paste_accelerator(LXTerminal * terminal, guint action, GtkWidget * item)
-+static gboolean terminal_paste_accelerator(LXTerminal * terminal, guint action, GtkWidget * item)
- {
- terminal_paste_activate_event(NULL, terminal);
-+ return TRUE;
- }
-
- /* Handler for "response" signal on Name Tab dialog. */