~ark/atomizer

ee66dc8a6db2cdf9944e3529ac165c20a01f24e0 — Julian Hurst 3 years ago ca18627
Fix truncation
1 files changed, 1 insertions(+), 1 deletions(-)

M src/atomizer_ui.py
M src/atomizer_ui.py => src/atomizer_ui.py +1 -1
@@ 160,7 160,7 @@ def print_entries(feeds, entries, start_idx):

        #Truncate long titles, pad smaller ones
        if len(entry.title) > max_columns:
            title = entry.title[:max_title_size - 2] + "..."
            title = entry.title[:max_title_size - 3] + "..."
        else:
            title = entry.title.ljust(max_title_size)
        if idx % 2 == 0: