italicize symlink filenames

This commit is contained in:
joshuaboud 2021-05-28 15:31:54 -03:00
parent b3833f87bb
commit 8633f4ebd1
No known key found for this signature in database
GPG Key ID: 17EFB59E2A8BF50E

View File

@ -419,6 +419,7 @@ class NavFileLink extends NavFile{
this.dom_element.nav_item_icon.appendChild(link_icon);
this.double_click = false;
this.link_target = link_target;
this.dom_element.nav_item_title.style.fontStyle = "italic";
}
show_properties() {
@ -650,6 +651,7 @@ class NavDirLink extends NavDir{
this.dom_element.nav_item_icon.appendChild(link_icon);
this.double_click = false;
this.link_target = link_target;
this.dom_element.nav_item_title.style.fontStyle = "italic";
}
async rm() {