summaryrefslogtreecommitdiffstats
path: root/meta/packages/gtk+/gtk+-2.10.12/range-no-redraw.patch
diff options
context:
space:
mode:
authorRoss Burton <ross@openedhand.com>2007-07-26 16:12:11 +0000
committerRoss Burton <ross@openedhand.com>2007-07-26 16:12:11 +0000
commit7d9c3749e535cb5b51402299d58bab4104880d8f (patch)
tree4ed3cb07d8361edde6596b1e950e4f57eb368df4 /meta/packages/gtk+/gtk+-2.10.12/range-no-redraw.patch
parent24f13ade828c10aee426164e9a35d455027e3358 (diff)
downloadpoky-7d9c3749e535cb5b51402299d58bab4104880d8f.tar.gz
Add a bit of a hack patch to disable frantic redrawing of GtkRange when they move, so that the contents has a change on slower devices
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@2234 311d38ba-8fff-0310-9ca6-ca027cbcb966
Diffstat (limited to 'meta/packages/gtk+/gtk+-2.10.12/range-no-redraw.patch')
-rw-r--r--meta/packages/gtk+/gtk+-2.10.12/range-no-redraw.patch17
1 files changed, 17 insertions, 0 deletions
diff --git a/meta/packages/gtk+/gtk+-2.10.12/range-no-redraw.patch b/meta/packages/gtk+/gtk+-2.10.12/range-no-redraw.patch
new file mode 100644
index 0000000000..384d71b4fe
--- /dev/null
+++ b/meta/packages/gtk+/gtk+-2.10.12/range-no-redraw.patch
@@ -0,0 +1,17 @@
1Index: gtk/gtkrange.c
2===================================================================
3--- gtk/gtkrange.c (revision 18523)
4+++ gtk/gtkrange.c (working copy)
5@@ -1979,8 +1979,12 @@
6 gtk_widget_queue_draw (GTK_WIDGET (range));
7
8 /* This is so we don't lag the widget being scrolled. */
9+#if 0
10+ /* Disable this, the scroll bar lags a bit but the end result is that
11+ scrolling treeviews is *a lot* smoother. See GNOME #460534. */
12 if (GTK_WIDGET_REALIZED (range))
13 gdk_window_process_updates (GTK_WIDGET (range)->window, FALSE);
14+#endif
15 }
16
17 /* Note that we don't round off to range->round_digits here.