瀏覽代碼

FileManager: Replace '->' with '→' in symlink statusbar info message

This looks so much nicer, as the '-' and '>' are not aligned in the
default font configuration.
Linus Groh 3 年之前
父節點
當前提交
5c79681611
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      Userland/Applications/FileManager/DirectoryView.cpp

+ 1 - 1
Userland/Applications/FileManager/DirectoryView.cpp

@@ -462,7 +462,7 @@ void DirectoryView::update_statusbar()
     if (selected_item_count == 1) {
     if (selected_item_count == 1) {
         auto& node = this->node(current_view().selection().first());
         auto& node = this->node(current_view().selection().first());
         if (!node.symlink_target.is_empty()) {
         if (!node.symlink_target.is_empty()) {
-            builder.append(" -> ");
+            builder.append("  ");
             builder.append(node.symlink_target);
             builder.append(node.symlink_target);
         }
         }
     }
     }