Browse Source

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

Alexander Koblov 3 năm trước cách đây
mục cha
commit
1418d99735
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  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;