Skip to content

Commit

Permalink
Merge pull request #1629 from Mailaender/pca-tile-view
Browse files Browse the repository at this point in the history
Fixed PCA perspective task tiles not appearing
  • Loading branch information
eselmeister authored Feb 2, 2024
2 parents b2a5ce9 + bdfcbdc commit 0efbed9
Showing 1 changed file with 4 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -20,16 +20,14 @@
import org.eclipse.jface.preference.IPreferenceStore;
import org.eclipse.swt.widgets.Composite;

import jakarta.inject.Inject;
import jakarta.annotation.PostConstruct;

public class QuickStartPart {

@Inject
private IEclipseContext context;
@PostConstruct
public void initializeContent(Composite parent, IEclipseContext eclipseContext) {

public void create(Composite parent) {

TaskTileContainer tileContainer = new TaskTileContainer(parent, 3, () -> context);
TaskTileContainer tileContainer = new TaskTileContainer(parent, 3, () -> eclipseContext);
/*
* Default
*/
Expand Down

0 comments on commit 0efbed9

Please sign in to comment.