Fix enter fullscreen and popover buttons

This commit is contained in:
Rafostar
2020-10-07 16:40:42 +02:00
parent dbdb6988a2
commit 041b31c161
6 changed files with 138 additions and 201 deletions

View File

@@ -220,15 +220,14 @@ class ClapperRevealerBottom extends CustomRevealer
this.revealerBox.add_css_class('osd');
this.set_child(this.revealerBox);
//this.revealerBox.show_all();
}
addWidget(widget)
append(widget)
{
this.revealerBox.pack_start(widget, false, true, 0);
this.revealerBox.append(widget);
}
removeWidget(widget)
remove(widget)
{
this.revealerBox.remove(widget);
}