Skip to content

Commit c1641d7

Browse files
authored
Allow max speed dumping (#838)
(0) in options
1 parent aefb5a3 commit c1641d7

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

CHANGELIST.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22

33
- Fix typo for L1Toolstamp!.Label (bikerspade)
44
- Update redumper to build 549
5+
- Allow max speed dumping ("0")
56

67
### 3.3.0 (2025-01-03)
78

MPF.UI/Windows/OptionsWindow.xaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -297,28 +297,28 @@
297297
</Grid.RowDefinitions>
298298

299299
<Label Grid.Row="0" Grid.Column="0" Content="CD" />
300-
<Slider x:Name="DumpSpeedCDSlider" Grid.Row="0" Grid.Column="1" Minimum="1" Maximum="72" IsSnapToTickEnabled="True" TickPlacement="BottomRight"
300+
<Slider x:Name="DumpSpeedCDSlider" Grid.Row="0" Grid.Column="1" Minimum="0" Maximum="72" IsSnapToTickEnabled="True" TickPlacement="BottomRight"
301301
Ticks="{Binding Source={x:Static core:Constants.SpeedsForCDAsCollection}}"
302302
Value="{Binding Options.PreferredDumpSpeedCD}" />
303303
<TextBox x:Name="DumpSpeedCDTextBox" Grid.Row="0" Grid.Column="2" Width="22" Height="22" TextAlignment="Center" IsReadOnly="True" VerticalAlignment="Center"
304304
Text="{Binding ElementName=DumpSpeedCDSlider, Path=Value, UpdateSourceTrigger=PropertyChanged}" Background="LightGray" Foreground="Gray"/>
305305

306306
<Label Grid.Row="1" Grid.Column="0" Content="DVD" />
307-
<Slider x:Name="DumpSpeedDVDSlider" Grid.Row="1" Grid.Column="1" Minimum="1" Maximum="24" IsSnapToTickEnabled="True" TickPlacement="BottomRight"
307+
<Slider x:Name="DumpSpeedDVDSlider" Grid.Row="1" Grid.Column="1" Minimum="0" Maximum="24" IsSnapToTickEnabled="True" TickPlacement="BottomRight"
308308
Ticks="{Binding Source={x:Static core:Constants.SpeedsForDVDAsCollection}}"
309309
Value="{Binding Options.PreferredDumpSpeedDVD}" />
310310
<TextBox x:Name="DumpSpeedDVDTextBox" Grid.Row="1" Grid.Column="2" Width="22" Height="22" TextAlignment="Center" IsReadOnly="True" VerticalAlignment="Center"
311311
Text="{Binding ElementName=DumpSpeedDVDSlider, Path=Value, UpdateSourceTrigger=PropertyChanged}" Background="LightGray" Foreground="Gray"/>
312312

313313
<Label Grid.Row="2" Grid.Column="0" Content="HD-DVD" />
314-
<Slider x:Name="DumpSpeedHDDVDSlider" Grid.Row="2" Grid.Column="1" Minimum="1" Maximum="24" IsSnapToTickEnabled="True" TickPlacement="BottomRight"
314+
<Slider x:Name="DumpSpeedHDDVDSlider" Grid.Row="2" Grid.Column="1" Minimum="0" Maximum="24" IsSnapToTickEnabled="True" TickPlacement="BottomRight"
315315
Ticks="{Binding Source={x:Static core:Constants.SpeedsForHDDVDAsCollection}}"
316316
Value="{Binding Options.PreferredDumpSpeedHDDVD}" />
317317
<TextBox x:Name="DumpSpeedHDDVDTextBox" Grid.Row="2" Grid.Column="2" Width="22" Height="22" TextAlignment="Center" IsReadOnly="True" VerticalAlignment="Center"
318318
Text="{Binding ElementName=DumpSpeedHDDVDSlider, Path=Value, UpdateSourceTrigger=PropertyChanged}" Background="LightGray" Foreground="Gray"/>
319319

320320
<Label Grid.Row="3" Grid.Column="0" Content="BD" />
321-
<Slider x:Name="DumpSpeedBDSlider" Grid.Row="3" Grid.Column="1" Minimum="1" Maximum="16" IsSnapToTickEnabled="True" TickPlacement="BottomRight"
321+
<Slider x:Name="DumpSpeedBDSlider" Grid.Row="3" Grid.Column="1" Minimum="0" Maximum="16" IsSnapToTickEnabled="True" TickPlacement="BottomRight"
322322
Ticks="{Binding Source={x:Static core:Constants.SpeedsForBDAsCollection}}"
323323
Value="{Binding Options.PreferredDumpSpeedBD}" />
324324
<TextBox x:Name="DumpSpeedBDTextBox" Grid.Row="3" Grid.Column="2" Width="22" Height="22" TextAlignment="Center" IsReadOnly="True" VerticalAlignment="Center"

0 commit comments

Comments
 (0)