diff options
author | Přemysl Janouch <p@janouch.name> | 2018-10-25 14:55:45 +0200 |
---|---|---|
committer | Přemysl Janouch <p@janouch.name> | 2018-10-25 14:58:53 +0200 |
commit | 1ba2709fdae04e62442a045fb3892aa8710e9d81 (patch) | |
tree | ea9bfd834e21f76225531c1587a682bc847f6ef4 | |
parent | 3e40137f7a4856aa6b21716cc6c9dcc741cc15d2 (diff) | |
download | sdn-1ba2709fdae04e62442a045fb3892aa8710e9d81.tar.gz sdn-1ba2709fdae04e62442a045fb3892aa8710e9d81.tar.xz sdn-1ba2709fdae04e62442a045fb3892aa8710e9d81.zip |
Align modification time right
To reflect GNU ls.
-rw-r--r-- | sdn.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -454,7 +454,7 @@ fun inline visible_lines () -> int { return max (0, LINES - 2); } fun update () { int start_column = g.full_view ? 0 : entry::FILENAME; - static int alignment[entry::COLUMNS] = { -1, -1, -1, 1, -1, -1 }; + static int alignment[entry::COLUMNS] = { -1, -1, -1, 1, 1, -1 }; erase (); int available = visible_lines (); |