Revert "Possibly fixed bug from issue #23"
This reverts commit 9bc942afa9
.
This commit is contained in:
parent
86168e558d
commit
d33d345154
1 changed files with 11 additions and 13 deletions
24
src/Bar.ahk
24
src/Bar.ahk
|
@ -392,23 +392,14 @@ Bar_updateStatic(m) {
|
|||
Bar_updateStatus() {
|
||||
Local anyContent, anyText, bat1, bat2, bat3, GuiN, m, mute, vol
|
||||
|
||||
anyText := Config_readinAny()
|
||||
If Config_readinBat {
|
||||
ResourceMonitor_getBatteryStatus(bat1, bat2)
|
||||
bat3 := SubStr(" " bat1, -2)
|
||||
}
|
||||
If Config_readinVolume {
|
||||
SoundGet, vol, MASTER, VOLUME
|
||||
SoundGet, mute, MASTER, MUTE
|
||||
vol := Round(vol)
|
||||
}
|
||||
|
||||
Loop, % Manager_monitorCount {
|
||||
m := A_Index
|
||||
GuiN := (m - 1) + 1
|
||||
Debug_logMessage("DEBUG[6] Bar_updateStatus(): Gui, " . GuiN . ": Default", 6)
|
||||
Gui, %GuiN%: Default
|
||||
If Config_readinBat {
|
||||
ResourceMonitor_getBatteryStatus(bat1, bat2)
|
||||
bat3 := SubStr(" " bat1, -2)
|
||||
If (bat1 < 10) And (bat2 = "off") {
|
||||
;; Change the color, if the battery level is below 10%
|
||||
GuiControl, +Background%Config_backColor_#3_#8% +c%Config_foreColor_#3_#8%, Bar_#%m%_batteryStatus_highlighted
|
||||
|
@ -424,9 +415,16 @@ Bar_updateStatus() {
|
|||
GuiControl, , Bar_#%m%_batteryStatus_highlighted, %bat3%
|
||||
GuiControl, , Bar_#%m%_batteryStatus, % " BAT: " bat3 "% "
|
||||
}
|
||||
If anyText
|
||||
GuiControl, , Bar_#%m%_anyText, % anyText
|
||||
anyText := Config_readinAny()
|
||||
If anyText {
|
||||
GuiControlGet, anyContent, , Bar_#%m%_anyText
|
||||
If Not (anyText = anyContent)
|
||||
GuiControl, , Bar_#%m%_anyText, % anyText
|
||||
}
|
||||
If Config_readinVolume {
|
||||
SoundGet, vol, MASTER, VOLUME
|
||||
SoundGet, mute, MASTER, MUTE
|
||||
vol := Round(vol)
|
||||
If (mute = "On") {
|
||||
;; Change the color, if the mute is on
|
||||
GuiControl, +Background%Config_backColor_#1_#9% +c%Config_foreColor_#1_#9%, Bar_#%m%_volume_highlighted
|
||||
|
|
Loading…
Reference in a new issue