1
0
Fork 0
forked from wry/wry

autocommit 2022-04-29 17:57:11 CEST

This commit is contained in:
Julian Orth 2022-04-29 17:57:11 +02:00
parent 9a0bfb3a72
commit 4e717ecef8
6 changed files with 39 additions and 14 deletions

View file

@ -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
}

View file

@ -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)]