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
May 01, 2019 20:02
Sorry for the late reply,Mentioned repository is not available.Was the issue resolved?
Community
IntelliJ IDEA Open API and Plugin Development
How to refresh Tool Window
0 votes
Created
April 29, 2019 13:16
Please, share complete code of toolwindow initialisation.
Community
IntelliJ IDEA Open API and Plugin Development
How to refresh Tool Window
0 votes
Created
April 29, 2019 10:24
Yes, existing layout from UI Designer cannot be updated after panel creation.You can replace `JPanel panel` with `com.intellij.ui.components.panels.Wrapper` and use `Wrapper.setContent(JComponent)`...
Community
IntelliJ IDEA Open API and Plugin Development
How to refresh Tool Window
0 votes
Created
April 01, 2019 10:23
You can't do it using UI Designer only.But you can enable "Custom Create" property on a component and create panel with gradient manually in `createUIComponents()` method.Ex: by overriding `protect...
Community
IntelliJ IDEA Open API and Plugin Development
How To GUI Form Gradient Background
0 votes
Created
March 27, 2019 23:50
VCS log is using `git4idea.repo.GitRepository#GIT_REPO_CHANGE` indeed.But it doesn't need such hacks, as the event of the commit is not interesting. Only the final state matters, which is a simple ...
Community
IntelliJ IDEA Open API and Plugin Development
Handle Git commit made not from IntelliJ UI
0 votes
Edited
February 10, 2019 17:49
In IDE log file (Help | Show Log in <system file manager>) or in "Console"/"idea.log" tabs in Run/Debug toolwindow.
Community
IntelliJ IDEA Open API and Plugin Development
PersistentStateComponent saves state only in session
0 votes
Edited
February 10, 2019 17:36
Please, check errors output.It should have smth like "Caused by: com.intellij.configurationStore.UnknownMacroException: Unknown macro: $WORKSPACE_FILE$ in storage file spec: $WORKSPACE_FILE$" in it...
Community
IntelliJ IDEA Open API and Plugin Development
PersistentStateComponent saves state only in session
0 votes
Edited
February 10, 2019 14:01
Usually, it is possible to use Map/List/etc for serialisation. This requires some fragile runtime magic, though.See https://github.com/JetBrains/intellij-community/blob/master/platform/dvcs-impl/sr...
Community
IntelliJ IDEA Open API and Plugin Development
PersistentStateComponent saves state only in session
0 votes
Edited
February 10, 2019 09:57
Also, you can omit explicit `<interface-class ... />` if it duplicates implementation class.Implementing `ApplicationComponent` interface is also not necessary (and it is deprecated).
Community
IntelliJ IDEA Open API and Plugin Development
PersistentStateComponent saves state only in session
0 votes
Created
February 10, 2019 09:52
Probably, caused by using same class both as service and component.You might want to remove "<applicationService ... />" registration from plugin.xml and use `ApplicationManager.getApplication().ge...
Community
IntelliJ IDEA Open API and Plugin Development
PersistentStateComponent saves state only in session
0 votes
«
First
‹
Previous
Next
›
Last
»