Wayland: don't allow minimizing applet popups either

This commit is contained in:
Nate Graham 2022-10-11 12:05:32 -06:00
parent 35606fd9ee
commit f56c67698d

View file

@ -717,7 +717,7 @@ bool XdgToplevelWindow::isMaximizable() const
bool XdgToplevelWindow::isMinimizable() const
{
if (isSpecialWindow() && !isTransient()) {
if ((isSpecialWindow() && !isTransient()) || isAppletPopup()) {
return false;
}
if (!rules()->checkMinimize(true)) {