From 8e2943fe11414617b9f400f36cd3336d89de4ed9 Mon Sep 17 00:00:00 2001 From: John Preston Date: Mon, 13 Jul 2015 14:14:15 +0300 Subject: [PATCH] filling optimized --- Telegram/SourceFiles/gui/flattextarea.cpp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Telegram/SourceFiles/gui/flattextarea.cpp b/Telegram/SourceFiles/gui/flattextarea.cpp index 730c72bf1..1edd4a0d2 100644 --- a/Telegram/SourceFiles/gui/flattextarea.cpp +++ b/Telegram/SourceFiles/gui/flattextarea.cpp @@ -128,7 +128,8 @@ int32 FlatTextarea::fakeMargin() const { void FlatTextarea::paintEvent(QPaintEvent *e) { QPainter p(viewport()); - p.fillRect(rect(), _st.bgColor->b); + QRect r(rect().intersected(e->rect())); + p.fillRect(r, _st.bgColor->b); bool phDraw = _phVisible; if (animating()) { p.setOpacity(a_phAlpha.current()); @@ -136,7 +137,7 @@ void FlatTextarea::paintEvent(QPaintEvent *e) { } if (phDraw) { p.save(); - p.setClipRect(rect()); + p.setClipRect(r); QRect phRect(_st.textMrg.left() - _fakeMargin + _st.phPos.x() + a_phLeft.current(), _st.textMrg.top() - _fakeMargin + _st.phPos.y(), width() - _st.textMrg.left() - _st.textMrg.right(), height() - _st.textMrg.top() - _st.textMrg.bottom()); p.setFont(_st.font->f); p.setPen(a_phColor.current());