Skip to content

Commit 89b0275

Browse files
committed
fix: made default text size larger
1 parent d23326f commit 89b0275

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/store/graphStore.jsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -539,11 +539,11 @@ const useGraphStore = create(saveCoordinatorMiddleware((set, get, api) => {
539539
textSettings: (() => {
540540
try {
541541
return {
542-
fontSize: parseFloat(localStorage.getItem('redstring_text_font_size')) || 1.0,
542+
fontSize: parseFloat(localStorage.getItem('redstring_text_font_size')) || 1.2,
543543
lineSpacing: parseFloat(localStorage.getItem('redstring_text_line_spacing')) || 1.0,
544544
};
545545
} catch (_) {
546-
return { fontSize: 1.0, lineSpacing: 1.0 };
546+
return { fontSize: 1.2, lineSpacing: 1.0 };
547547
}
548548
})(),
549549

0 commit comments

Comments
 (0)