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
1=== modified file 'os/os-pager.c'
2--- os/os-pager.c 2011-04-07 17:15:23 +0000
3+++ os/os-pager.c 2011-04-08 21:11:45 +0000
4@@ -196,7 +196,7 @@
5 pager = OS_PAGER (user_data);
6 priv = pager->priv;
7
8- if (priv->pager_window != NULL)
9+ if (priv->parent != NULL && priv->pager_window != NULL)
10 os_pager_draw (pager);
11 }
12

Subscribers

People subscribed via source and target branches