Skip to content

Commit

Permalink
fix(Action): IDEA 2024.1 ActionUpdateThread.OLD_EDT
Browse files Browse the repository at this point in the history
  • Loading branch information
LinWanCen committed Sep 10, 2024
1 parent 2930947 commit 0b48c94
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@ package com.github.linwancen.plugin.graph.action

import com.github.linwancen.plugin.graph.ui.DrawGraphBundle
import com.github.linwancen.plugin.graph.ui.RelController
import com.intellij.ide.actions.CopyReferenceAction
import com.intellij.openapi.actionSystem.AnActionEvent
import com.intellij.openapi.actionSystem.CommonDataKeys
import com.intellij.openapi.project.DumbAwareAction

object FileMethodCallAction : DumbAwareAction() {
object FileMethodCallAction : CopyReferenceAction() {

override fun update(e: AnActionEvent) {
e.presentation.text = DrawGraphBundle.message("file.method.call.graph")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@ package com.github.linwancen.plugin.graph.action

import com.github.linwancen.plugin.graph.ui.DrawGraphBundle
import com.github.linwancen.plugin.graph.ui.RelController
import com.intellij.ide.actions.CopyReferenceAction
import com.intellij.openapi.actionSystem.AnActionEvent
import com.intellij.openapi.actionSystem.CommonDataKeys
import com.intellij.openapi.project.DumbAwareAction

object MethodCallAction : DumbAwareAction() {
object MethodCallAction : CopyReferenceAction() {

override fun update(e: AnActionEvent) {
e.presentation.text = DrawGraphBundle.message("method.call.graph")
Expand Down

0 comments on commit 0b48c94

Please sign in to comment.