(text, preSpool, fullSpool, prec, lowest, highest)
| 95 | def refreshPanel(self, fit): |
| 96 | |
| 97 | def formatTooltip(text, preSpool, fullSpool, prec, lowest, highest): |
| 98 | if roundToPrec(preSpool, prec) == roundToPrec(fullSpool, prec): |
| 99 | return False, text |
| 100 | else: |
| 101 | return True, "{}\nSpool up: {}-{}".format( |
| 102 | text, |
| 103 | formatAmount(preSpool, prec, lowest, highest), |
| 104 | formatAmount(fullSpool, prec, lowest, highest)) |
| 105 | |
| 106 | defaultSpoolValue = eos.config.settings['globalDefaultSpoolupPercentage'] |
| 107 | counter = 0 |
nothing calls this directly
no test coverage detected