More styling impr. and less UI contributions

This commit is contained in:
Sven Efftinge
2019-05-09 10:13:33 -07:00
committed by Christian Weichel
parent 20db72fec7
commit 97135bd08e
9 changed files with 254 additions and 179 deletions

View File

@@ -0,0 +1,11 @@
import { injectable } from 'inversify';
import { ProblemContribution } from '@theia/markers/lib/browser/problem/problem-contribution';
@injectable()
export class SilentProblemContribution extends ProblemContribution {
async initializeLayout(): Promise<void> {
// await this.openView();
}
}