| Index: tools/gtk_clipboard_dump/gtk_clipboard_dump.cc
|
| ===================================================================
|
| --- tools/gtk_clipboard_dump/gtk_clipboard_dump.cc (revision 12396)
|
| +++ tools/gtk_clipboard_dump/gtk_clipboard_dump.cc (working copy)
|
| @@ -30,6 +30,12 @@
|
| }
|
|
|
| printf(" / length: %d / bits %d]: ", data->length, data->format);
|
| +
|
| + if (strstr(gdk_atom_name(targets[i]), "image")) {
|
| + printf("(image omitted)\n\n");
|
| + continue;
|
| + }
|
| +
|
| for (int j = 0; j < data->length; j++) {
|
| // Output data one byte at a time. Currently wide strings look
|
| // pretty weird.
|
|
|