autocommit 2022-04-29 17:57:11 CEST
This commit is contained in:
parent
9a0bfb3a72
commit
4e717ecef8
6 changed files with 39 additions and 14 deletions
|
|
@ -328,6 +328,10 @@ impl Node for XdgPopup {
|
|||
impl StackedNode for XdgPopup {
|
||||
stacked_node_impl!();
|
||||
|
||||
fn stacked_set_visible(&self, visible: bool) {
|
||||
self.xdg.set_visible(visible);
|
||||
}
|
||||
|
||||
fn stacked_absolute_position_constrains_input(&self) -> bool {
|
||||
false
|
||||
}
|
||||
|
|
|
|||
|
|
@ -443,6 +443,10 @@ impl ToplevelNode for Xwindow {
|
|||
|
||||
impl StackedNode for Xwindow {
|
||||
stacked_node_impl!();
|
||||
|
||||
fn stacked_set_visible(&self, visible: bool) {
|
||||
self.tl_set_visible(visible);
|
||||
}
|
||||
}
|
||||
|
||||
#[derive(Debug, Error)]
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue