NightLight/Bar: left click toggle, converted to NIconButton

+ Adapted some tooltip to the new richtext NText
This commit is contained in:
quadbyte 2025-08-31 01:26:04 -04:00
parent 87f9afbd85
commit 80f6570f04
7 changed files with 39 additions and 51 deletions

View file

@ -200,10 +200,10 @@ Row {
text: {
var str = ""
if (MediaService.canGoNext) {
str += "Right click for next\n"
str += "Right click for next<br/>"
}
if (MediaService.canGoPrevious) {
str += "Middle click for previous\n"
str += "Middle click for previous<br/>"
}
return str
}