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

This looks so much nicer, as the '-' and '>' are not aligned in the
default font configuration.
This commit is contained in:
Linus Groh 2022-05-29 12:06:16 +01:00 committed by Andreas Kling
parent de90faa4c4
commit 5c79681611
Notes: sideshowbarker 2024-07-17 10:36:13 +09:00

View File

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