aboutsummaryrefslogtreecommitdiff
path: root/lib/components
diff options
context:
space:
mode:
authorRuben Beltran del Rio <git@r.bdr.sh>2024-05-08 14:41:03 +0200
committerRuben Beltran del Rio <git@r.bdr.sh>2024-05-08 14:41:03 +0200
commit6a87c2530865b5e18f70b71b456f43e72702c1c6 (patch)
tree917ba6b27bc7cb7f9eb3ee031ad452d440d2e245 /lib/components
parent362f91160b243453578633e3f9af67ce40179d8c (diff)
Add keyboard markers, shiftable sliders
Diffstat (limited to 'lib/components')
-rw-r--r--lib/components/configuration.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/components/configuration.js b/lib/components/configuration.js
index ddb4a27..78065c3 100644
--- a/lib/components/configuration.js
+++ b/lib/components/configuration.js
@@ -4,6 +4,6 @@ export default class Configuration extends Component {
constructor(config) {
super(config);
- this.lineLength = this.lineLength || 1000;
+ this.lineLength = this.lineLength || 500;
}
};