vault backup: 2025-02-27 21:31:55

This commit is contained in:
sShemet
2025-02-27 21:31:55 +05:00
parent d7b3cf162c
commit cdbe7d110c
41 changed files with 369 additions and 845 deletions

View File

@@ -6834,7 +6834,7 @@ class IconizePlugin extends obsidian.Plugin {
return;
}
for (const openedFile of getAllOpenedFiles(this)) {
if (openedFile.path !== file.path) {
if (!file || !openedFile || openedFile.path !== file.path) {
continue;
}
const leaf = openedFile.leaf.view;

View File

@@ -1,7 +1,7 @@
{
"id": "obsidian-icon-folder",
"name": "Iconize",
"version": "2.14.6",
"version": "2.14.7",
"minAppVersion": "0.9.12",
"description": "Add icons to anything you desire in Obsidian, including files, folders, and text.",
"author": "Florian Woelki",

View File

@@ -1,5 +1,6 @@
.iconize-inline-title-wrapper {
width: var(--line-width);
max-width: var(--max-width);
margin-inline: var(--content-margin);
}