@@ -13,16 +13,17 @@ import { IMarkdownString, MarkdownString } from 'vs/base/common/htmlContent';
13
13
import { Disposable , DisposableStore , IReference , MutableDisposable } from 'vs/base/common/lifecycle' ;
14
14
import { ResourceMap } from 'vs/base/common/map' ;
15
15
import { removeAnsiEscapeCodes } from 'vs/base/common/strings' ;
16
+ import { Constants } from 'vs/base/common/uint' ;
16
17
import { URI } from 'vs/base/common/uri' ;
17
18
import { generateUuid } from 'vs/base/common/uuid' ;
18
19
import { ContentWidgetPositionPreference , ICodeEditor , IContentWidgetPosition , IEditorMouseEvent , MouseTargetType } from 'vs/editor/browser/editorBrowser' ;
19
20
import { ICodeEditorService } from 'vs/editor/browser/services/codeEditorService' ;
20
21
import { EditorOption } from 'vs/editor/common/config/editorOptions' ;
22
+ import { editorCodeLensForeground , overviewRulerError , overviewRulerInfo } from 'vs/editor/common/core/editorColorRegistry' ;
21
23
import { IRange , Range } from 'vs/editor/common/core/range' ;
22
24
import { IEditorContribution } from 'vs/editor/common/editorCommon' ;
23
25
import { IModelDeltaDecoration , ITextModel , OverviewRulerLane , TrackedRangeStickiness } from 'vs/editor/common/model' ;
24
26
import { IModelService } from 'vs/editor/common/services/model' ;
25
- import { editorCodeLensForeground , overviewRulerError , overviewRulerInfo } from 'vs/editor/common/core/editorColorRegistry' ;
26
27
import { localize } from 'vs/nls' ;
27
28
import { createAndFillInContextMenuActions } from 'vs/platform/actions/browser/menuEntryActionViewItem' ;
28
29
import { IMenuService , MenuId } from 'vs/platform/actions/common/actions' ;
@@ -536,6 +537,7 @@ abstract class TitleLensContentWidget {
536
537
537
538
this . viewZoneId = accessor . addZone ( {
538
539
afterLineNumber : 0 ,
540
+ afterColumn : Constants . MAX_SAFE_SMALL_INTEGER ,
539
541
domNode : document . createElement ( 'div' ) ,
540
542
heightInPx : 20 ,
541
543
} ) ;
0 commit comments