зеркало из https://github.com/mozilla/pjs.git
fix for #92621. invalidate the scroll bar when the search criteria changes
because that changes the number of results we are showing in the outliner. r=mscott, sr=bienvenu
This commit is contained in:
Родитель
c7d4314c08
Коммит
06c47f0af9
|
@ -1650,7 +1650,10 @@ nsNntpIncomingServer::SetSearchValue(const char *searchValue)
|
|||
mSubscribeSearchResult.Clear();
|
||||
mGroupsOnServer.EnumerateForwards((nsCStringArrayEnumFunc)buildSubscribeSearchResult, (void *)this);
|
||||
|
||||
if (mOutliner) mOutliner->Invalidate();
|
||||
if (mOutliner) {
|
||||
mOutliner->Invalidate();
|
||||
mOutliner->InvalidateScrollbar();
|
||||
}
|
||||
return NS_OK;
|
||||
}
|
||||
|
||||
|
|
Загрузка…
Ссылка в новой задаче