diff --git a/app/view/containmentinterface.cpp b/app/view/containmentinterface.cpp index 711f478e9..db7c7a19f 100644 --- a/app/view/containmentinterface.cpp +++ b/app/view/containmentinterface.cpp @@ -457,8 +457,9 @@ bool ContainmentInterface::appletIsExpandable(PlasmaQuick::AppletQuickItem *appl return false; } - return (appletQuickItem->fullRepresentation() != nullptr - && appletQuickItem->preferredRepresentation() != appletQuickItem->fullRepresentation()); + return ((appletQuickItem->fullRepresentation() != nullptr + && appletQuickItem->preferredRepresentation() != appletQuickItem->fullRepresentation()) + || Latte::Layouts::Storage::self()->isSubContainment(m_view->layout(), appletQuickItem->applet())); } bool ContainmentInterface::hasExpandedApplet() const