changeToFactor method
Muda para modo factor e define o fator
Implementation
void changeToFactor(double newFactor) {
_type = ScaleType.factor;
_factor = newFactor;
_lastNotifiedScale = null; // ✅ Reset para forçar notificação
notifyListeners();
}