rpcfetch: fix profile activity label pending text

Typo, instead of setting profileStatusT the second statement was supposed to set profileActT.

Signed-off-by: Ophestra Umiker <cat@ophivana.moe>
This commit is contained in:
Ophestra Umiker 2024-06-30 02:54:31 +09:00
parent 34304119ca
commit c23e6120c8
Signed by: cat
SSH Key Fingerprint: SHA256:gQ67O0enBZ7UdZypgtspB2FDM1g3GVw8nX0XSdcFw8Q
1 changed files with 1 additions and 1 deletions

View File

@ -412,7 +412,7 @@ func failureState(ok bool) {
statusText.SetText("Retrying in 5 seconds...") statusText.SetText("Retrying in 5 seconds...")
profileStatusB.FillColor = colornames.Darkred profileStatusB.FillColor = colornames.Darkred
profileStatusT.SetText("Disconnected") profileStatusT.SetText("Disconnected")
profileStatusT.SetText("Pending...") profileActT.SetText("Pending...")
profileT.Hide() profileT.Hide()
} }
} }