aboutsummaryrefslogtreecommitdiff
path: root/shell/callbacks.c
diff options
context:
space:
mode:
authorhwspeedy <ns@bigbear.dk>2024-04-28 16:02:24 +0200
committerhwspeedy <ns@bigbear.dk>2024-04-28 16:02:24 +0200
commit73334e01c47a37c4c0f9c3d3778be2a8df826ba1 (patch)
tree616dc67c28526be1b5ff9ee579cd07b38c307570 /shell/callbacks.c
parent4153afe55440fdc3841d38d5feaf88937add74b7 (diff)
FIX Disabled non working clipboard - low value
Diffstat (limited to 'shell/callbacks.c')
-rw-r--r--shell/callbacks.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/shell/callbacks.c b/shell/callbacks.c
index 3b39253c..d011623a 100644
--- a/shell/callbacks.c
+++ b/shell/callbacks.c
@@ -258,12 +258,12 @@ void cb_refresh()
shell_do_reload(TRUE);
}
-void cb_copy_to_clipboard()
+/*void cb_copy_to_clipboard()
{
ShellModuleEntry *entry = shell_get_main_shell()->selected;
if (entry) {
- gchar *data = module_entry_function(entry);
+ gchar *data = module_entry_function(entry);
GtkClipboard *clip =
gtk_clipboard_get(gdk_atom_intern("CLIPBOARD", FALSE));
ReportContext *ctx = report_context_text_new(NULL);
@@ -280,6 +280,7 @@ void cb_copy_to_clipboard()
report_context_free(ctx);
}
}
+*/
void cb_side_pane()
{