Browse Source

use epsilon char

merge-requests/365/head
Jørgen Lien Sellæg 8 years ago
parent
commit
3530f3c231
  1. 4
      src/notebook.cc

4
src/notebook.cc

@ -233,8 +233,8 @@ void Notebook::open(const boost::filesystem::path &file_path_, size_t notebook_i
++diff; ++diff;
} }
if (prepend_current_view.empty()) if (prepend_current_view.empty())
prepend_current_view = it1->string() + (diff > 0 ? "/.../" : "/"); prepend_current_view = it1->string() + (diff > 0 ? "//" : "/");
update_label(c, it2->string() + (diff > 0 ? "/.../" : "/")); update_label(c, it2->string() + (diff > 0 ? "//" : "/"));
} }
} }
update_label(current_view_index, prepend_current_view); update_label(current_view_index, prepend_current_view);

Loading…
Cancel
Save