Skip to content

Commit

Permalink
Remove hard coded default values.
Browse files Browse the repository at this point in the history
  • Loading branch information
atrabattoni committed Jul 18, 2024
1 parent f36edfd commit 0bcd152
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions xpick/app/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -120,12 +120,12 @@
processing = {
"space": {
"integration": Toggle(label="Integrate", width=160),
"decimation": TextInput(title="Decimate", value="16", width=75),
"decimation": TextInput(title="Decimate", value="", width=75),
"highpass": TextInput(title="Highpass", value="", width=75),
},
"time": {
"integration": Toggle(label="Integrate", width=160),
"decimation": TextInput(title="Decimate", value="4", width=75),
"decimation": TextInput(title="Decimate", value="", width=75),
"highpass": TextInput(title="Highpass", value="", width=75),
},
}
Expand Down

0 comments on commit 0bcd152

Please sign in to comment.