浏览代码

FIX: Issue [0002028] Narrow tabs and shorten titles if too many tabs

Alexander Koblov 3 年之前
父节点
当前提交
1418d99735
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      src/ufileviewnotebook.pas

+ 1 - 1
src/ufileviewnotebook.pas

@@ -316,7 +316,7 @@ begin
       NewCaption := '*' + NewCaption;
 
     if (tb_text_length_limit in gDirTabOptions) and (UTF8Length(NewCaption) > gDirTabLimit) then
-      NewCaption := UTF8Copy(NewCaption, 1, gDirTabLimit) + '...';
+      NewCaption := UTF8Copy(NewCaption, 1, gDirTabLimit) + '..';
 
 {$IF DEFINED(LCLGTK2)}
     Caption := NewCaption;