@ -68,6 +68,8 @@ DragDrop.DropArea {
}
property bool blurEnabled: plasmoid . configuration . blurEnabled && ! root . forceTransparentPanel
|| ( hasExpandedApplet && zoomFactor === 1 && plasmoid . configuration . panelSize === 100 )
property bool confirmedDragEntered: false
property bool containsOnlyPlasmaTasks: false / / t h i s i s f l a g t o i n d i c a t e w h e n f r o m t a s k s o n l y a p l a s m a b a s e d o n e i s f o u n d
property bool dockContainsMouse: dock && dock . visibility ? dock.visibility.containsMouse : false
@ -75,6 +77,7 @@ DragDrop.DropArea {
property bool disablePanelShadowMaximized: plasmoid . configuration . disablePanelShadowForMaximized
property bool drawShadowsExternal: panelShadowsActive && behaveAsPlasmaPanel
property bool editMode: plasmoid . userConfiguring
property bool forceSolidPanel: plasmoid . configuration . solidBackgroundForMaximized && windowsModel . hasMaximizedWindow
property bool forceTransparentPanel: root . backgroundOnlyOnMaximized && ! windowsModel . hasMaximizedWindow && Latte . WindowSystem . compositingActive
&& ! ( hasExpandedApplet && zoomFactor === 1 && plasmoid . configuration . panelSize === 100 )
@ -99,6 +102,7 @@ DragDrop.DropArea {
property bool onlyAddingStarup: true / / i s u s e d f o r t h e i n i t i a l i z a t i o n p h a s e i n s t a r t u p w h e r e t h e r e a r e n t r e m o v a l s , t h i s v a r i a b l e p r o v i d e s a w a y t o g r o w i c o n s i z e
property bool shrinkThickMargins: plasmoid . configuration . shrinkThickMargins
property bool solidPanel: Latte . WindowSystem . compositingActive ? plasmoid.configuration.solidPanel : true
/ / F I X M E : p o s s i b l y t h i s i s g o i n g t o b e t h e d e f a u l t b e h a v i o r , t h i s u s e r c h o i c e
/ / h a s b e e n d r o p p e d f r o m t h e D o c k C o n f i g u r a t i o n W i n d o w
/ / p r o p e r t y b o o l s m a l l A u t o m a t i c I c o n J u m p s : p l a s m o i d . c o n f i g u r a t i o n . s m a l l A u t o m a t i c I c o n J u m p s
@ -1319,7 +1323,7 @@ DragDrop.DropArea {
Loader {
id: windowsModel
active: ( plasmoid . configuration . backgroundOnlyOnMaximized || root . disablePanelShadowMaximized ) && dock
active: ( plasmoid . configuration . backgroundOnlyOnMaximized || root . disablePanelShadowMaximized || plasmoid . configuration . solidBackgroundForMaximized ) && dock
property bool hasMaximizedWindow: active && item ? item.maximizedWindowOnScreen : false
sourceComponent: WindowsModel { }