Skip to content

Commit

Permalink
fix: fix wrong MySetting default values
Browse files Browse the repository at this point in the history
  • Loading branch information
dylanljones committed May 6, 2022
1 parent 976374c commit 32f38c0
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions pyrekordbox/mysettings/file.py
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@ class DjmMySettingFile(SettingsFile):
struct = structs.DjmMySetting
defaults = {
"channel_fader_curve": structs.ChannelFaderCurve.linear,
"cross_fader_curve": structs.CrossfaderCurve.constant,
"cross_fader_curve": structs.CrossfaderCurve.fast_cut,
"headphones_pre_eq": structs.HeadphonesPreEQ.post_eq,
"headphones_mono_split": structs.HeadphonesMonoSplit.stereo,
"beat_fx_quantize": structs.BeatFXQuantize.on,
Expand All @@ -175,7 +175,7 @@ class DjmMySettingFile(SettingsFile):
"midi_button_type": structs.MidiButtonType.toggle,
"display_brightness": structs.MixerDisplayBrightness.five,
"indicator_brightness": structs.MixerIndicatorBrightness.three,
"channel_fader_curve_long": structs.ChannelFaderCurveLong.linear,
"channel_fader_curve_long": structs.ChannelFaderCurveLong.exponential,
}


Expand All @@ -184,7 +184,7 @@ class MySettingFile(SettingsFile):
struct = structs.MySetting
defaults = {
"auto_cue": structs.AutoCue.on,
"auto_cue_level": structs.AutoCueLevel.minus_36db,
"auto_cue_level": structs.AutoCueLevel.memory,
"disc_slot_illumination": structs.DiscSlotIllumination.bright,
"eject_lock": structs.EjectLock.unlock,
"hotcue_autoload": structs.HotCueAutoLoad.on,
Expand Down Expand Up @@ -218,7 +218,7 @@ class MySetting2File(SettingsFile):
"jog_lcd_brightness": structs.JogLCDBrightness.three,
"waveform_divisions": structs.WaveformDivisions.phrase,
"waveform": structs.Waveform.waveform,
"beat_jump_beat_value": structs.BeatJumpBeatValue.one,
"beat_jump_beat_value": structs.BeatJumpBeatValue.sixteen,
}


Expand Down

0 comments on commit 32f38c0

Please sign in to comment.