Skip to content

Commit

Permalink
Problems view - increase maximumWidth for Code and Source columns (#1…
Browse files Browse the repository at this point in the history
…52040)

Increase maximumWidth for Code and Source columns
  • Loading branch information
lszomoru authored Jun 14, 2022
1 parent d8823e6 commit 009d9ec
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/vs/workbench/contrib/markers/browser/markersTable.ts
Original file line number Diff line number Diff line change
Expand Up @@ -283,7 +283,7 @@ export class MarkersTable extends Disposable implements IProblemsWidget {
tooltip: '',
weight: 1,
minimumWidth: 100,
maximumWidth: 200,
maximumWidth: 300,
templateId: MarkerCodeColumnRenderer.TEMPLATE_ID,
project(row: Marker): Marker { return row; }
},
Expand All @@ -306,7 +306,7 @@ export class MarkersTable extends Disposable implements IProblemsWidget {
tooltip: '',
weight: 1,
minimumWidth: 100,
maximumWidth: 200,
maximumWidth: 300,
templateId: MarkerOwnerColumnRenderer.TEMPLATE_ID,
project(row: Marker): Marker { return row; }
}
Expand Down

0 comments on commit 009d9ec

Please sign in to comment.