主页
IDEs Support (IntelliJ Platform) | JetBrains
联系支持服务
社区
登录
Aleksey Pivovarov
活动总数
801
最后的活动
2024年09月23日 14:52
成员加入日期
2013年08月06日 15:41
关注
0 名用户
关注者数
0 名用户
投票数
0
订阅数
444
活动概览
文章(0)
帖子(0)
评论(357)
按最近的活动排序
最近的活动
投票数
创建于
2018年11月15日 11:37
This is not possible at the moment.Which problem are you trying to solve this way?
社区
IntelliJ IDEA Open API and Plugin Development
VCS revert
0 票
创建于
2018年11月14日 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/...
社区
IntelliJ IDEA Open API and Plugin Development
Can't find community edition release tags on GitHub anymore
0 票
已编辑于
2018年11月06日 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...
社区
IntelliJ IDEA Open API and Plugin Development
How to add a JFrame to a ToolWindow?
0 票
已编辑于
2018年11月06日 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...
社区
IntelliJ IDEA Open API and Plugin Development
How to add a JFrame to a ToolWindow?
0 票
创建于
2018年11月06日 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.)
社区
IntelliJ IDEA Open API and Plugin Development
How to add a JFrame to a ToolWindow?
0 票
已编辑于
2018年10月30日 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...
社区
IntelliJ IDEA Open API and Plugin Development
How can I receive git repository from plugin?
0 票
已编辑于
2018年10月30日 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/...
社区
IntelliJ IDEA Open API and Plugin Development
How can I receive git repository from plugin?
0 票
创建于
2018年10月16日 10:45
See https://www.jetbrains.org/intellij/sdk/docs/basics/architectural_overview/general_threading_rules.html
社区
IntelliJ IDEA Open API and Plugin Development
paintComponent() isn't called after calling repaint()
0 票
创建于
2018年10月15日 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...
社区
IntelliJ IDEA Open API and Plugin Development
paintComponent() isn't called after calling repaint()
0 票
创建于
2018年10月09日 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.
社区
IntelliJ IDEA Open API and Plugin Development
Add plugin action to "Welcome" window
0 票
«
第一页
‹
上一页
下一页
›
最后
»