diff options
author | Matthias Clasen <mclasen@redhat.com> | 2006-12-25 03:57:39 +0000 |
---|---|---|
committer | Matthias Clasen <matthiasc@src.gnome.org> | 2006-12-25 03:57:39 +0000 |
commit | e7e84bb8ec66acd0244501c6771364dcc5aa7477 (patch) | |
tree | 3f4d62250c9198226965caea17520bbe18f066f3 /gtk/gtktextutil.c | |
parent | 502a54a17c7efb0327415883818dc3f28c543d11 (diff) | |
download | gtk+-e7e84bb8ec66acd0244501c6771364dcc5aa7477.tar.gz |
Remove debug output.
2006-12-24 Matthias Clasen <mclasen@redhat.com>
* gtk/gtktextutil.c: Remove debug output.
* gtk/gtktextview.c: Improve the DND scrolling
behaviour. (#92387, Carlos Garnacho Parro)
Diffstat (limited to 'gtk/gtktextutil.c')
-rw-r--r-- | gtk/gtktextutil.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/gtk/gtktextutil.c b/gtk/gtktextutil.c index 1f7b93128b..4c6f16977a 100644 --- a/gtk/gtktextutil.c +++ b/gtk/gtktextutil.c @@ -327,16 +327,12 @@ _gtk_text_util_create_rich_drag_icon (GtkWidget *widget, gtk_text_layout_validate (layout, DRAG_ICON_MAX_HEIGHT); gtk_text_layout_get_size (layout, &layout_width, &layout_height); - g_print ("%s: layout size %d %d\n", G_STRFUNC, layout_width, layout_height); - layout_width = MIN (layout_width, DRAG_ICON_MAX_WIDTH); layout_height = MIN (layout_height, DRAG_ICON_MAX_HEIGHT); pixmap_width = layout_width + DRAG_ICON_LAYOUT_BORDER * 2; pixmap_height = layout_height + DRAG_ICON_LAYOUT_BORDER * 2; - g_print ("%s: pixmap size %d %d\n", G_STRFUNC, pixmap_width, pixmap_height); - drawable = gdk_pixmap_new (widget->window, pixmap_width + 2, pixmap_height + 2, -1); |