- Katılım
- 6 Kas 2021
- Mesajlar
- 4,361
- Tepkime puanı
- 5,712
- Puanları
- 113
- Yaş
- 32
- Konum
- Türkiye
- Dc
- fatihbulut
HP/SP rejenere olurken fare imlecini barın üzerine getirdiğinizde güncel değer gösterilmiyor. Bu fix ile rejenerasyon sırasında da gösteriyor.
uitaskbar.py
Şunu arayın:
Şununla değiştirin:
Öncesi
Sonrası
uitaskbar.py
Şunu arayın:
Kod:
if True == self.hpGaugeBoard.IsIn():
self.tooltipHP.Show()
else:
self.tooltipHP.Hide()
if True == self.mpGaugeBoard.IsIn():
self.tooltipSP.Show()
else:
self.tooltipSP.Hide()
Şununla değiştirin:
Kod:
if True == self.hpGaugeBoard.IsIn() or True == self.hpRecoveryGaugeBar.IsIn():
self.tooltipHP.Show()
else:
self.tooltipHP.Hide()
if True == self.mpGaugeBoard.IsIn() or True == self.spRecoveryGaugeBar.IsIn():
self.tooltipSP.Show()
else:
self.tooltipSP.Hide()
Öncesi
Sonrası
