Home
IDEs Support (IntelliJ Platform) | JetBrains
Contact Support
Community
Sign in
Aleksey Pivovarov
Total activity
801
Last activity
September 23, 2024 14:52
Member since
August 06, 2013 15:41
Following
0 users
Followed by
0 users
Votes
0
Subscriptions
444
Activity overview
Articles (0)
Posts (0)
Comments (357)
Sort by recent activity
Recent activity
Votes
Created
November 15, 2018 11:37
This is not possible at the moment.Which problem are you trying to solve this way?
Community
IntelliJ IDEA Open API and Plugin Development
VCS revert
0 votes
Created
November 14, 2018 11:13
The GitHub repository doesn't contain any tags for performance reasons.If you need to check out a tag, fetch it from the repository mirror which contains all of them - git://git.jetbrains.org/idea/...
Community
IntelliJ IDEA Open API and Plugin Development
Can't find community edition release tags on GitHub anymore
0 votes
Edited
November 06, 2018 13:06
>I want to add two boxes horizontallyBut you're adding three components: myToolWindowContent.add(box);myToolWindowContent.add(countermeasure_box);myToolWindowContent.add(title); Quoting GridLayou...
Community
IntelliJ IDEA Open API and Plugin Development
How to add a JFrame to a ToolWindow?
0 votes
Edited
November 06, 2018 12:07
Using JFrame is unlikely a good solution, if a solution at all.Please, share complete snippet of code, that constructs toolwindow content.Screenshot in the linked topic is cropped and lacks crucial...
Community
IntelliJ IDEA Open API and Plugin Development
How to add a JFrame to a ToolWindow?
0 votes
Created
November 06, 2018 09:40
Why do you want to use `JFrame.pack()` to layout component, if it's not going to be used as a part of this frame?(And, likely, will be relayauted at any tool window resize.)
Community
IntelliJ IDEA Open API and Plugin Development
How to add a JFrame to a ToolWindow?
0 votes
Edited
October 30, 2018 16:37
Probably, it's better to listen for all repository mappings changes (ex: if new root was added by user).Ex: project.getMessageBus().connect([disposable]).subscribe(VcsRepositoryManager.VCS_REPOSITO...
Community
IntelliJ IDEA Open API and Plugin Development
How can I receive git repository from plugin?
0 votes
Edited
October 30, 2018 12:57
First, you need to add git4idea.jar plugin to your dependencies.(By adding it as a provided library / to SDK and appending `<depends>Git4Idea</depends>` to plugin.xml)You can locate it in /plugins/...
Community
IntelliJ IDEA Open API and Plugin Development
How can I receive git repository from plugin?
0 votes
Created
October 16, 2018 10:45
See https://www.jetbrains.org/intellij/sdk/docs/basics/architectural_overview/general_threading_rules.html
Community
IntelliJ IDEA Open API and Plugin Development
paintComponent() isn't called after calling repaint()
0 votes
Created
October 15, 2018 11:06
`actionPerformed` method is called on EDT (aka AWT / Swing) thread. `JComponent.repaint()` call schedules rendering event on this thread, that cannot be handled until `actionPerformed` call is comp...
Community
IntelliJ IDEA Open API and Plugin Development
paintComponent() isn't called after calling repaint()
0 votes
Created
October 09, 2018 22:13
Are you sure there are no errors logged?Possible cause is that your action has no assigned icon, while welcome screen expects it to have one.
Community
IntelliJ IDEA Open API and Plugin Development
Add plugin action to "Welcome" window
0 votes
«
First
‹
Previous
Next
›
Last
»