Skip to content

Open Find Usages Toolwindow button repeats question "Do you want to search for accessors of 'fieldName'" #96

@unv-unv

Description

@unv-unv

Pre-requisites: open the following Java-file in editor:

public class Test
{
    private String text = "";

    public String getText()
    {
        return text;
    }

    public static void main(String[] args)
    {
        Test test = new Test();

        System.out.println(test.text);
        System.out.println(test.getText());
    }
}

Testcase:

  1. Middle-click on "text" field.
  2. Consulo would ask "Do you want to search for accessors of 'fieldName'". Answer "No".
  3. Consulo shows drop-down list with search results:
    изображение
  4. Click on "Open Find Usages Toolwindow" button.

Expected result: Consulo opens Tool-window immediately.

Actual result: Consulo repeats question "Do you want to search for accessors of 'fieldName'".

Metadata

Metadata

Assignees

Type

No type

Projects

No projects

Milestone

No milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions