From 67de896d3bf3064ed22668efb6577047afd746d8 Mon Sep 17 00:00:00 2001 From: james-xli Date: Sat, 18 May 2024 09:03:37 -0700 Subject: [PATCH] Update settings description: Remove reference to 0px behavior I removed the special 0px behavior in the previous commit but forgot to update this text in the settings description. --- main.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.ts b/main.ts index b9c7ad2..5c3c407 100644 --- a/main.ts +++ b/main.ts @@ -468,7 +468,7 @@ class SupernoteSettingTab extends PluginSettingTab { new Setting(containerEl) .setName('Note width in .note files') - .setDesc('Width of the note image when viewing .note files, in pixels. Does not affect exported images and markdown. Set to 0 to allow the image to scale freely.') + .setDesc('Width of the note image when viewing .note files, in pixels. Does not affect exported images and markdown.') .addSlider(text => text .setLimits(100, 1400, 50) // Width of an A5X/A6X2/Nomad page is 1404 px (with no upscaling) .setDynamicTooltip()