mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-27 10:03:11 +07:00
Rethrow PCE from ColorAndFontOptions.initPluggedDescriptions (IDEA-304555)
GitOrigin-RevId: 54dd792a19fac0ffdcda033efcee30783dbb9134
This commit is contained in:
committed by
intellij-monorepo-bot
parent
4c24ef53d9
commit
e0b1f2c579
+7
@@ -20,6 +20,7 @@ import com.intellij.openapi.extensions.BaseExtensionPointName;
|
||||
import com.intellij.openapi.options.*;
|
||||
import com.intellij.openapi.options.colors.*;
|
||||
import com.intellij.openapi.options.ex.Settings;
|
||||
import com.intellij.openapi.progress.ProcessCanceledException;
|
||||
import com.intellij.openapi.project.Project;
|
||||
import com.intellij.openapi.project.ProjectManager;
|
||||
import com.intellij.openapi.util.*;
|
||||
@@ -539,6 +540,9 @@ public class ColorAndFontOptions extends SearchableConfigurable.Parent.Abstract
|
||||
try {
|
||||
initDescriptions(page, descriptions, scheme);
|
||||
}
|
||||
catch (ProcessCanceledException e) {
|
||||
throw e;
|
||||
}
|
||||
catch (Exception e) {
|
||||
LOG.error(e);
|
||||
}
|
||||
@@ -547,6 +551,9 @@ public class ColorAndFontOptions extends SearchableConfigurable.Parent.Abstract
|
||||
try {
|
||||
initDescriptions(provider, descriptions, scheme);
|
||||
}
|
||||
catch (ProcessCanceledException e) {
|
||||
throw e;
|
||||
}
|
||||
catch (Exception e) {
|
||||
LOG.error(e);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user