fix: copy filters to overlay window (#5643)

This commit is contained in:
nerix
2024-10-12 12:08:30 +02:00
committed by GitHub
parent bdc12ffb3f
commit bc1850ce2d
4 changed files with 7 additions and 4 deletions
+2 -1
View File
@@ -1155,7 +1155,8 @@ void Split::showOverlayWindow()
{
if (!this->overlayWindow_)
{
this->overlayWindow_ = new OverlayWindow(this->getIndirectChannel());
this->overlayWindow_ =
new OverlayWindow(this->getIndirectChannel(), this->getFilters());
}
this->overlayWindow_->show();
}