diff options
author | Moonchild <moonchild@palemoon.org> | 2020-05-10 15:02:59 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-05-10 15:02:59 +0200 |
commit | 221627575b56e8bb85e8329400da99138f2f67c1 (patch) | |
tree | 28b0142ae0eedc45e992bb7bacafdc3dba7a15af /layout/forms/nsTextControlFrame.cpp | |
parent | 1659e69dfb075975f366b1e2dbfa145febb2094f (diff) | |
parent | f9047ff63de90e8c0242a5e7170a8c70f93f99b1 (diff) | |
download | UXP-221627575b56e8bb85e8329400da99138f2f67c1.tar UXP-221627575b56e8bb85e8329400da99138f2f67c1.tar.gz UXP-221627575b56e8bb85e8329400da99138f2f67c1.tar.lz UXP-221627575b56e8bb85e8329400da99138f2f67c1.tar.xz UXP-221627575b56e8bb85e8329400da99138f2f67c1.zip |
Merge pull request #1537 from win7-7/column-backgrounds-pr-2
Better way to create display items for column backgrounds
Diffstat (limited to 'layout/forms/nsTextControlFrame.cpp')
-rw-r--r-- | layout/forms/nsTextControlFrame.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/layout/forms/nsTextControlFrame.cpp b/layout/forms/nsTextControlFrame.cpp index 465ef0883..7e610f931 100644 --- a/layout/forms/nsTextControlFrame.cpp +++ b/layout/forms/nsTextControlFrame.cpp @@ -1419,7 +1419,6 @@ nsTextControlFrame::PeekOffset(nsPeekOffsetStruct *aPos) void nsTextControlFrame::BuildDisplayList(nsDisplayListBuilder* aBuilder, - const nsRect& aDirtyRect, const nsDisplayListSet& aLists) { /* @@ -1447,7 +1446,7 @@ nsTextControlFrame::BuildDisplayList(nsDisplayListBuilder* aBuilder, // placeholder has to be visible. if (kid->GetContent() != txtCtrl->GetPlaceholderNode() || txtCtrl->GetPlaceholderVisibility()) { - BuildDisplayListForChild(aBuilder, kid, aDirtyRect, set, 0); + BuildDisplayListForChild(aBuilder, kid, set, 0); } kid = kid->GetNextSibling(); } |