We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7127933 commit 4cd47d8Copy full SHA for 4cd47d8
src/view/treeNodes/pullRequestNode.ts
@@ -323,7 +323,8 @@ export class PRNode extends TreeNode implements vscode.CommentingRangeProvider2
323
label += `#${number}: `;
324
}
325
326
- let labelTitle = title.length > 50 ? `${title.substring(0, 50)}...` : title;
+ const horizontalScrolling = vscode.workspace.getConfiguration('workbench').get<boolean>('list.horizontalScrolling', false);
327
+ let labelTitle = (!horizontalScrolling && title.length > 50) ? `${title.substring(0, 50)}...` : title;
328
if (COPILOT_ACCOUNTS[author.login]) {
329
labelTitle = labelTitle.replace('[WIP]', '');
330
0 commit comments