Allow overlay from pane grid title bar

This commit is contained in:
Clark Moody 2021-06-17 14:50:28 -05:00
parent e68da229b3
commit 27b42ca6b6
2 changed files with 16 additions and 8 deletions

View file

@ -1,6 +1,7 @@
use crate::container;
use crate::event::{self, Event};
use crate::layout;
use crate::overlay;
use crate::pane_grid;
use crate::{
Clipboard, Element, Hasher, Layout, Padding, Point, Rectangle, Size,
@ -242,4 +243,11 @@ where
control_status.merge(title_status)
}
pub(crate) fn overlay(
&mut self,
layout: Layout<'_>,
) -> Option<overlay::Element<'_, Message, Renderer>> {
self.content.overlay(layout)
}
}