Skip to content
Closed
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
@@ -1,6 +1,7 @@
package com.jfrog.ide.idea.actions;

import com.intellij.icons.AllIcons;
import com.intellij.openapi.actionSystem.ActionUpdateThread;
import com.intellij.openapi.actionSystem.AnActionEvent;
import com.intellij.openapi.actionSystem.Presentation;
import com.intellij.openapi.actionSystem.ex.ToolbarLabelAction;
Expand All @@ -16,6 +17,7 @@
import java.time.format.FormatStyle;

public class ScanTimeLabelAction extends ToolbarLabelAction {

@Override
public void update(@NotNull AnActionEvent e) {
super.update(e);
Expand All @@ -38,4 +40,10 @@ public void update(@NotNull AnActionEvent e) {
presentation.setIcon(null);
}
}

@NotNull
@Override
public ActionUpdateThread getActionUpdateThread() {
return ActionUpdateThread.EDT;
}
}