mirror of
https://github.com/AyuGram/AyuGramDesktop.git
synced 2025-06-05 06:33:57 +02:00
Fix out-of-clip-area dialog paint with collapsed archive.
This commit is contained in:
parent
2928c7b4b5
commit
84c75f4a74
1 changed files with 1 additions and 1 deletions
|
@ -657,7 +657,7 @@ void InnerWidget::paintEvent(QPaintEvent *e) {
|
||||||
p.translate(0, top - skippedTop);
|
p.translate(0, top - skippedTop);
|
||||||
for (auto e = list.cend(); i != e; ++i) {
|
for (auto e = list.cend(); i != e; ++i) {
|
||||||
auto row = (*i);
|
auto row = (*i);
|
||||||
if (top - skippedTop >= dialogsClip.top() - skip + dialogsClip.height()) {
|
if (top >= dialogsClip.top() - skip + dialogsClip.height()) {
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue