Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -691,6 +691,15 @@ protected Shell getParentShell() {
// in the task manager of the OS
return null;
}

@Override
protected Control createContents(Composite parent) {
Control contents = super.createContents(parent);
if (isDark) {
applyDarkStyles(getShell());
}
return contents;
}
};
// hide splash if any
hideSplash(shell);
Expand Down
Loading