Skip to content

Commit

Permalink
other: set default mouseBufferSize aka smoothing factor to 2
Browse files Browse the repository at this point in the history
  • Loading branch information
dominiksta committed Aug 30, 2024
1 parent c087694 commit fc07a49
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,11 @@ Changelog
- "Recent Files" menu was not sometimes not showing. (This was an upstream bug
(SAP/ui5-webcomponents#7391)).

### Changed

- The default mouse smoothing factor is now set to 2. This should make the pen
input feel a bit more responsive.


`0.0.7` - _2024-08-16_
----------------------------------------------------------------------
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ quite a bit when that happens.
- [x] Exporting to PDF with [pdf-lib](https://pdf-lib.js.org/)
- [x] Table of Contents
- [x] Auto Import From PDF
- [ ] Tabs
- [x] Tabs
- [ ] Tablet (and Phone) Friendly UI
- [ ] Android Version with Cordova or Capacitor
- [x] Stack Trace & Bug Report Dialog
Expand Down
2 changes: 1 addition & 1 deletion src/renderer/persistence/ConfigDTO.ts
Original file line number Diff line number Diff line change
Expand Up @@ -291,7 +291,7 @@ export function defaultConfig(): ConfigDTO {
CanvasToolPen: {
color: "#000000",
strokeWidth: "medium",
mouseBufferSize: 4,
mouseBufferSize: 2,
},
CanvasToolEraser: {
strokeWidth: "medium",
Expand Down

0 comments on commit fc07a49

Please sign in to comment.