Skip to content

Use new Perl icons for file types #2959

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
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
5 changes: 3 additions & 2 deletions plugin/core/src/main/java/com/perl5/PerlIcons.java
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@
package com.perl5;


import com.intellij.icons.AllIcons;
import com.intellij.openapi.util.IconLoader;
import com.intellij.openapi.util.NotNullLazyValue;
import com.intellij.ui.LayeredIcon;
Expand All @@ -42,8 +43,8 @@ public final class PerlIcons {
public static final Icon PERL_OPTION = load("/icons/option.png");
public static final Icon PERL_OPTIONS = load("/icons/options.png");
public static final Icon TEMPLATE_ROOT = load("/icons/templateRoot.png");
public static final Icon PM_FILE = load("/icons/perl5.png");
public static final Icon PERL_SCRIPT_FILE_ICON = load("/icons/perl5classic.png");
public static final Icon PM_FILE = AllIcons.FileTypes.Perl;
public static final Icon PERL_SCRIPT_FILE_ICON = AllIcons.FileTypes.Perl;
public static final Icon CAMEL_MODIFIER = load("/icons/camel_modifier.png");
public static final Icon POD_FILE = PERL_LANGUAGE_ICON;
public static final Icon TEST_FILE = load("/icons/file-test.png");
Expand Down