Hello

I have found a little issue.
Suppose I have next code :


SQL Query
create or replace package body TEST_SCHEMA.SAMPLE is

 procedure SampleTest
 is
 begin
    SampleTest;
    SAMPLE.SampleTest;
    TEST_SCHEMA.SAMPLE.SampleTest;
 end;
 end SAMPLE;

When I click the first and second lines I get the expected result. Cursor jumps to "procedure SampleTest" line in the same window.
But when I click to "TEST_SCHEMA.SAMPLE.SampleTest;" PLD opens new window and cursor jumps there. It is annoying...
Could You fix it?

Thanks


Sergiy Buzadzhi