2
0
Эх сурвалжийг харах

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

Alexander Koblov 3 жил өмнө
parent
commit
1418d99735

+ 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;