Skip to content

Commit

Permalink
Renamed icons.speechBalloonArrowed to more clear `.speechBalloonLas…
Browse files Browse the repository at this point in the history
…so` ↞ [auto-sync from `adamlui/chatgpt-apps`]
  • Loading branch information
adamlui authored and kudo-sync-bot committed Jul 7, 2024
1 parent 213f9b7 commit 09e3aba
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions greasemonkey/duckduckgpt.user.js
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@
// @description:zu Yengeza izimpendulo ze-AI ku-DuckDuckGo (inikwa amandla yi-GPT-4o!)
// @author KudoAI
// @namespace https://kudoai.com
// @version 2024.7.6.8
// @version 2024.7.6.9
// @license MIT
// @icon https://media.ddgpt.com/images/icons/duckduckgpt/icon48.png?af89302
// @icon64 https://media.ddgpt.com/images/icons/duckduckgpt/icon64.png?af89302
Expand Down Expand Up @@ -782,7 +782,7 @@
settingIcon = icons.signalStream.create()
settingIcon.style.cssText = 'position: relative ; top: 3px ; left: 0.5px ; margin-right: 9px'
} else if (key == 'autoGet') {
settingIcon = icons.speechBalloonArrowed.create()
settingIcon = icons.speechBalloonLasso.create()
settingIcon.style.cssText = 'position: relative ; top: 4.5px ; margin-right: 7px'
} else if (key == 'autoFocusChatbarDisabled') {
settingIcon = icons.caretsInward.create()
Expand Down Expand Up @@ -1131,13 +1131,13 @@
}
},

speechBalloonArrowed: {
speechBalloonLasso: {
create() {
const speechBalloonArrowedSVG = document.createElementNS('http://www.w3.org/2000/svg', 'svg'),
speechBalloonArrowedSVGattrs = [['width', 17], ['height', 17], ['viewBox', '0 -960 960 960']]
speechBalloonArrowedSVGattrs.forEach(([attr, value]) => speechBalloonArrowedSVG.setAttribute(attr, value))
speechBalloonArrowedSVG.append(createSVGelem('path', { stroke: 'none', d: 'M323-41v-247h-10q-105 0-172.5-67T73-528q0-105 74-179t179-74h36l-44-44 69-69 162 162-162 162-69-69 44-44h-36q-64 0-109.5 45.5T171-528q0 64 45.5 109.5T326-373h95v96l96-96h117q64 0 109.5-45.5T789-528q0-64-45.5-109.5T634-683h10v-98h-10q105 0 179 74t74 179q0 105-74 179t-179 74h-77L323-41Z' }))
return speechBalloonArrowedSVG
const speechBalloonLassoSVG = document.createElementNS('http://www.w3.org/2000/svg', 'svg'),
speechBalloonLassoSVGattrs = [['width', 17], ['height', 17], ['viewBox', '0 -960 960 960']]
speechBalloonLassoSVGattrs.forEach(([attr, value]) => speechBalloonLassoSVG.setAttribute(attr, value))
speechBalloonLassoSVG.append(createSVGelem('path', { stroke: 'none', d: 'M323-41v-247h-10q-105 0-172.5-67T73-528q0-105 74-179t179-74h36l-44-44 69-69 162 162-162 162-69-69 44-44h-36q-64 0-109.5 45.5T171-528q0 64 45.5 109.5T326-373h95v96l96-96h117q64 0 109.5-45.5T789-528q0-64-45.5-109.5T634-683h10v-98h-10q105 0 179 74t74 179q0 105-74 179t-179 74h-77L323-41Z' }))
return speechBalloonLassoSVG
}
},

Expand Down

0 comments on commit 09e3aba

Please sign in to comment.