From 3530f3c231790763e887efe362aed5f26f3fa5b8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B8rgen=20Lien=20Sell=C3=A6g?= Date: Thu, 5 Apr 2018 15:47:48 +0200 Subject: [PATCH] use epsilon char --- src/notebook.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/notebook.cc b/src/notebook.cc index 213f1b3..4870f0c 100644 --- a/src/notebook.cc +++ b/src/notebook.cc @@ -233,8 +233,8 @@ void Notebook::open(const boost::filesystem::path &file_path_, size_t notebook_i ++diff; } if (prepend_current_view.empty()) - prepend_current_view = it1->string() + (diff > 0 ? "/.../" : "/"); - update_label(c, it2->string() + (diff > 0 ? "/.../" : "/")); + prepend_current_view = it1->string() + (diff > 0 ? "/…/" : "/"); + update_label(c, it2->string() + (diff > 0 ? "/…/" : "/")); } } update_label(current_view_index, prepend_current_view);