Merge lp:~cimi/overlay-scrollbar/fix-thumb-draw into lp:overlay-scrollbar

Proposed by Andrea Cimitan
Status: Merged
Merged at revision: 162
Proposed branch: lp:~cimi/overlay-scrollbar/fix-thumb-draw
Merge into: lp:overlay-scrollbar
Diff against target: 20 lines (+4/-0)
1 file modified
os/os-thumb.c (+4/-0)
To merge this branch: bzr merge lp:~cimi/overlay-scrollbar/fix-thumb-draw
Reviewer Review Type Date Requested Status
Javier Jardón Approve
Review via email: mp+53730@code.launchpad.net

Description of the change

call gtk_widget_queue_draw on button_press and button_release of the thumb

To post a comment you must log in.
Revision history for this message
Javier Jardón (jjardon) :
review: Approve

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== modified file 'os/os-thumb.c'
2--- os/os-thumb.c 2011-03-16 17:56:04 +0000
3+++ os/os-thumb.c 2011-03-17 02:44:27 +0000
4@@ -187,6 +187,8 @@
5
6 priv->button_press_event = TRUE;
7 priv->motion_notify_event = FALSE;
8+
9+ gtk_widget_queue_draw (widget);
10 }
11 }
12
13@@ -209,6 +211,8 @@
14
15 priv->button_press_event = FALSE;
16 priv->motion_notify_event = FALSE;
17+
18+ gtk_widget_queue_draw (widget);
19 }
20 }
21

Subscribers

People subscribed via source and target branches