Skip to content

Commit

Permalink
Fix batch rename
Browse files Browse the repository at this point in the history
  • Loading branch information
luisbocanegra committed Mar 1, 2024
1 parent 50f1d5b commit 51c3578
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions package/contents/ui/main.qml
Original file line number Diff line number Diff line change
Expand Up @@ -329,7 +329,7 @@ PlasmoidItem {
}
}

function getRandomCcfg_widgetShadowSizeolor() {
function getRandomColor() {
const h = Math.random()
const s = rainbowSaturation
const l = rainbowLightness
Expand Down Expand Up @@ -695,7 +695,6 @@ PlasmoidItem {
repeat: (fgMode === 1)
interval: fgRainbowInterval
onTriggered: {
console.log("rainbowfgTimer");
addingColors = true
interval = fgRainbowInterval
}
Expand Down Expand Up @@ -849,7 +848,6 @@ PlasmoidItem {
if ( tries == 0 || object == null ) return ;
if ( object.toString().indexOf("ContainmentItem_QML") > -1 ) {
main.containmentItem = object ;
dumpProps(main.containmentItem.parent)
console.log( "ContainmentItemFound At " + ( depth - tries ) + " recursive call" ) ;
} else {
lookForContainer( object.parent , tries-1 ) ;
Expand Down

0 comments on commit 51c3578

Please sign in to comment.