Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
小 白蛋
Intellij Community
Commits
a9cb091a
Commit
a9cb091a
authored
6 years ago
by
Vassiliy.Kudryashov
Browse files
Options
Download
Email Patches
Plain Diff
IDEA-161033 Navigate to Type Declaration -- Opens a new window
parent
999f1dc8
Branches unavailable
Tags unavailable
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
platform/platform-impl/src/com/intellij/openapi/fileEditor/impl/FileEditorManagerImpl.java
+2
-1
...tellij/openapi/fileEditor/impl/FileEditorManagerImpl.java
with
2 additions
and
1 deletion
+2
-1
platform/platform-impl/src/com/intellij/openapi/fileEditor/impl/FileEditorManagerImpl.java
+
2
-
1
View file @
a9cb091a
...
@@ -77,6 +77,7 @@ import org.jetbrains.concurrency.Promise;
...
@@ -77,6 +77,7 @@ import org.jetbrains.concurrency.Promise;
import
javax.swing.*
;
import
javax.swing.*
;
import
javax.swing.border.Border
;
import
javax.swing.border.Border
;
import
java.awt.*
;
import
java.awt.*
;
import
java.awt.event.InputEvent
;
import
java.awt.event.KeyEvent
;
import
java.awt.event.KeyEvent
;
import
java.awt.event.MouseEvent
;
import
java.awt.event.MouseEvent
;
import
java.beans.PropertyChangeEvent
;
import
java.beans.PropertyChangeEvent
;
...
@@ -705,7 +706,7 @@ public class FileEditorManagerImpl extends FileEditorManagerEx implements Persis
...
@@ -705,7 +706,7 @@ public class FileEditorManagerImpl extends FileEditorManagerEx implements Persis
// Shift was used while clicking
// Shift was used while clicking
if
(
event
instanceof
MouseEvent
&&
if
(
event
instanceof
MouseEvent
&&
((
MouseEvent
)
event
).
isShiftDown
()
&&
((
MouseEvent
)
event
).
getModifiersEx
()
==
InputEvent
.
SHIFT_DOWN_MASK
&&
(
event
.
getID
()
==
MouseEvent
.
MOUSE_CLICKED
||
(
event
.
getID
()
==
MouseEvent
.
MOUSE_CLICKED
||
event
.
getID
()
==
MouseEvent
.
MOUSE_PRESSED
||
event
.
getID
()
==
MouseEvent
.
MOUSE_PRESSED
||
event
.
getID
()
==
MouseEvent
.
MOUSE_RELEASED
))
{
event
.
getID
()
==
MouseEvent
.
MOUSE_RELEASED
))
{
...
...
This diff is collapsed.
Click to expand it.
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment
Menu
Projects
Groups
Snippets
Help