You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/vs/editor/contrib/rename/browser/renameInputField.ts
+20-16Lines changed: 20 additions & 16 deletions
Original file line number
Diff line number
Diff line change
@@ -202,8 +202,7 @@ export class RenameInputField implements IContentWidget {
202
202
const[accept,preview]=this._acceptKeybindings;
203
203
this._label!.innerText=localize({key: 'label',comment: ['placeholders are keybindings, e.g "F2 to Rename, Shift+F2 to Preview"']},"{0} to Rename, {1} to Preview",this._keybindingService.lookupKeybinding(accept)?.getLabel(),this._keybindingService.lookupKeybinding(preview)?.getLabel());
204
204
205
-
this._domNode!.style.minWidth=`250px`;// to prevent from widening when candidates come in
206
-
this._domNode!.style.maxWidth=`400px`;// TODO@ulugbekna: what if we have a very long name?
205
+
this._domNode!.style.minWidth=`200px`;// to prevent from widening when candidates come in
0 commit comments