Merge lp:~cimi/overlay-scrollbar/fix-754717 into lp:overlay-scrollbar

Proposed by Andrea Cimitan
Status: Merged
Merged at revision: 204
Proposed branch: lp:~cimi/overlay-scrollbar/fix-754717
Merge into: lp:overlay-scrollbar
Diff against target: 11 lines (+1/-1)
1 file modified
os/os-pager.c (+1/-1)
To merge this branch: bzr merge lp:~cimi/overlay-scrollbar/fix-754717
Reviewer Review Type Date Requested Status
David Barth (community) Approve
Review via email: mp+57018@code.launchpad.net

Description of the change

simple priv->parent check != NULL

To post a comment you must log in.
Revision history for this message
David Barth (dbarth) wrote :

+1

review: Approve

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
=== modified file 'os/os-pager.c'
--- os/os-pager.c 2011-04-07 17:15:23 +0000
+++ os/os-pager.c 2011-04-08 21:11:45 +0000
@@ -196,7 +196,7 @@
196 pager = OS_PAGER (user_data);196 pager = OS_PAGER (user_data);
197 priv = pager->priv;197 priv = pager->priv;
198198
199 if (priv->pager_window != NULL)199 if (priv->parent != NULL && priv->pager_window != NULL)
200 os_pager_draw (pager);200 os_pager_draw (pager);
201}201}
202202

Subscribers

People subscribed via source and target branches