diff options
author | Joakim Verona <joakim@verona.se> | 2011-07-04 20:32:20 +0200 |
---|---|---|
committer | Joakim Verona <joakim@verona.se> | 2011-07-04 20:32:20 +0200 |
commit | 303da42474c7a4a59b2e86dda88ec74509bcd91f (patch) | |
tree | 64cb73e98fd84ec3ddba16530c5e8d05535b4171 /src/emacsgtkfixed.c | |
parent | 57be30e7ad69cc84761c269349da9da73598080c (diff) | |
download | emacs-303da42474c7a4a59b2e86dda88ec74509bcd91f.tar.gz emacs-303da42474c7a4a59b2e86dda88ec74509bcd91f.tar.bz2 emacs-303da42474c7a4a59b2e86dda88ec74509bcd91f.zip |
work on cliptop. swithched from viewport, back to gtkfixed. pretty acceptable visuals
Diffstat (limited to 'src/emacsgtkfixed.c')
-rw-r--r-- | src/emacsgtkfixed.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/emacsgtkfixed.c b/src/emacsgtkfixed.c index 61d7898ce44..0eacd2eaa2d 100644 --- a/src/emacsgtkfixed.c +++ b/src/emacsgtkfixed.c @@ -59,8 +59,8 @@ void aloc_callback(GtkWidget* child, GtkWidget* fixed){ child_allocation.width = xv->clipx; child_allocation.height = xv->clipy - xv->cliptop; gtk_widget_size_allocate (child, &child_allocation); - //TODO find a way to remove this fooble workaround - gtk_adjustment_set_value (gtk_viewport_get_vadjustment(GTK_VIEWPORT(xv->widgetwindow)), 1.0*xv->cliptop); + //TODO find a way to remove this feeble workaround + //gtk_adjustment_set_value (gtk_viewport_get_vadjustment(GTK_VIEWPORT(xv->widgetwindow)), 1.0*xv->cliptop); } } |