mirror of
https://gitgud.io/wackyideas/aerothemeplasma.git
synced 2024-08-15 00:43:43 +00:00
Compare commits
2 commits
08a349c664
...
2647c7e2bf
Author | SHA1 | Date | |
---|---|---|---|
|
2647c7e2bf | ||
|
ffff4bdb7b |
3 changed files with 5 additions and 11 deletions
|
@ -92,7 +92,6 @@ Item {
|
||||||
dashWindow.visible = !dashWindow.visible;
|
dashWindow.visible = !dashWindow.visible;
|
||||||
dashWindow.showingAllPrograms = false;
|
dashWindow.showingAllPrograms = false;
|
||||||
Plasmoid.setActiveWin(dashWindow);
|
Plasmoid.setActiveWin(dashWindow);
|
||||||
console.log(floatingOrbPanel.buttonIcon.implicitHeight);
|
|
||||||
dashWindow.m_searchField.focus = true;
|
dashWindow.m_searchField.focus = true;
|
||||||
orb.raise();
|
orb.raise();
|
||||||
}
|
}
|
||||||
|
@ -124,10 +123,6 @@ Item {
|
||||||
root.Layout.minimumHeight = orb.height;
|
root.Layout.minimumHeight = orb.height;
|
||||||
root.Layout.maximumHeight = orb.height;
|
root.Layout.maximumHeight = orb.height;
|
||||||
}
|
}
|
||||||
|
|
||||||
// This has to be done, or else the orb won't be positioned correctly. ??????????
|
|
||||||
/*orb.y += 5;
|
|
||||||
orb.y -= 5; // ??????????????????????????????????????*/
|
|
||||||
}
|
}
|
||||||
|
|
||||||
//kicker.status: PlasmaCore.Types.PassiveStatus
|
//kicker.status: PlasmaCore.Types.PassiveStatus
|
||||||
|
|
|
@ -77,13 +77,11 @@ Item {
|
||||||
id: mouseArea
|
id: mouseArea
|
||||||
anchors.fill: parent
|
anchors.fill: parent
|
||||||
hoverEnabled: true
|
hoverEnabled: true
|
||||||
acceptedButtons: Qt.LeftButton | Qt.RightButton
|
acceptedButtons: Qt.LeftButton// | Qt.RightButton
|
||||||
propagateComposedEvents: true
|
//propagateComposedEvents: true
|
||||||
onPressed: mouse => {
|
onPressed: mouse => {
|
||||||
if(mouse.button === Qt.LeftButton)
|
//if(mouse.button === Qt.LeftButton)
|
||||||
root.showMenu();
|
root.showMenu();
|
||||||
else
|
|
||||||
mouse.accepted = false;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -102,7 +102,7 @@ PlasmaCore.Dialog {
|
||||||
} else {
|
} else {
|
||||||
requestActivate();
|
requestActivate();
|
||||||
searchField.forceActiveFocus();
|
searchField.forceActiveFocus();
|
||||||
if(!firstTimePopup) setFloatingAvatarPosition();
|
setFloatingAvatarPosition();
|
||||||
}
|
}
|
||||||
resetRecents(); // Resets the recents model to prevent errors and crashes.
|
resetRecents(); // Resets the recents model to prevent errors and crashes.
|
||||||
}
|
}
|
||||||
|
@ -117,6 +117,7 @@ PlasmaCore.Dialog {
|
||||||
var pos = popupPosition(width, height);
|
var pos = popupPosition(width, height);
|
||||||
x = pos.x;
|
x = pos.x;
|
||||||
y = pos.y;
|
y = pos.y;
|
||||||
|
setFloatingAvatarPosition();
|
||||||
}
|
}
|
||||||
|
|
||||||
onSearchingChanged: {
|
onSearchingChanged: {
|
||||||
|
|
Loading…
Reference in a new issue