mirror of
https://github.com/zsviczian/obsidian-excalidraw-plugin.git
synced 2025-08-06 05:46:28 +00:00
Change the default sticky note to have transparent border
In this video: https://youtu.be/fXGcOWycgG4?t=1923 it is mentioned that the default border color for the "Convert selected text elements to sticky notes" script is a transparent border, however that is not the current default value. I think setting `transparent` as the default is more useful than `#000000` because `transparent` can only be set via a script (at least without affecting the text color) while `#000000` can be set since it is also a common color for text.
This commit is contained in:
@@ -15,7 +15,7 @@ settings = ea.getScriptSettings();
|
||||
if(!settings["Border color"]) {
|
||||
settings = {
|
||||
"Border color" : {
|
||||
value: "#000000",
|
||||
value: "transparent",
|
||||
description: "Any legal HTML color (#000000, rgb, color-name, etc.). Set to 'transparent' for transparent color."
|
||||
},
|
||||
"Background color" : {
|
||||
|
||||
Reference in New Issue
Block a user