summaryrefslogtreecommitdiff
path: root/grc/core/Platform.py
diff options
context:
space:
mode:
Diffstat (limited to 'grc/core/Platform.py')
-rw-r--r--grc/core/Platform.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/grc/core/Platform.py b/grc/core/Platform.py
index b73dade2e8..3ff3700a6b 100644
--- a/grc/core/Platform.py
+++ b/grc/core/Platform.py
@@ -31,7 +31,7 @@ from .Block import Block
from .Port import Port
from .Param import Param
-from .utils import odict, extract_docs
+from .utils import odict, extract_docs, hide_bokeh_gui_options_if_not_installed
class Platform(Element):
@@ -173,6 +173,8 @@ class Platform(Element):
self._docstring_extractor.finish()
# self._docstring_extractor.wait()
+ hide_bokeh_gui_options_if_not_installed(self.blocks['options'])
+
def iter_xml_files(self):
"""Iterator for block descriptions and category trees"""
for block_path in self.config.block_paths: