Changes
Co-authored-by: Reifonas <211114984+Reifonas@users.noreply.github.com>
This commit is contained in:
@@ -44,7 +44,7 @@ function AxisControl({
|
||||
}
|
||||
|
||||
export function FineTuningControls() {
|
||||
const { fineTuning, setFineTuning, resetFineTuning } = useModelStore();
|
||||
const { fineTuning, setFineTuning, resetFineTuning, scaleRatio } = useModelStore();
|
||||
|
||||
return (
|
||||
<div className="space-y-3">
|
||||
@@ -52,10 +52,15 @@ export function FineTuningControls() {
|
||||
<h3 className="font-mono text-xs font-semibold uppercase tracking-widest text-muted-foreground">
|
||||
Ajuste Fino
|
||||
</h3>
|
||||
<Button variant="ghost" size="sm" className="h-6 text-[10px] gap-1" onClick={resetFineTuning}>
|
||||
<RefreshCw className="h-3 w-3" />
|
||||
Resetar
|
||||
</Button>
|
||||
<div className="flex items-center gap-2">
|
||||
<span className="font-mono text-[10px] text-primary" title="Passos em mm reais (compensados pela escala)">
|
||||
{scaleRatio.label}
|
||||
</span>
|
||||
<Button variant="ghost" size="sm" className="h-6 text-[10px] gap-1" onClick={resetFineTuning}>
|
||||
<RefreshCw className="h-3 w-3" />
|
||||
Resetar
|
||||
</Button>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
{/* Position */}
|
||||
|
||||
Reference in New Issue
Block a user