diff options
author | Volker Schroer <3470424+dl1ksv@users.noreply.github.com> | 2019-04-12 16:50:07 +0200 |
---|---|---|
committer | Marcus Müller <marcus@hostalia.de> | 2019-04-19 19:11:18 +0200 |
commit | 8bcb1973acc148c8975ea5386ad52a5e79f327ba (patch) | |
tree | 6b824edda0811c5a43b1f233f3645c7ccd89da20 /grc/core | |
parent | 680e2354f4c47786569d24e7d9b32563bddeb59f (diff) |
Add missing quotes in themes parameter of option block
Diffstat (limited to 'grc/core')
-rw-r--r-- | grc/core/generator/flow_graph.py.mako | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/grc/core/generator/flow_graph.py.mako b/grc/core/generator/flow_graph.py.mako index 1000f7a727..f1696f72c2 100644 --- a/grc/core/generator/flow_graph.py.mako +++ b/grc/core/generator/flow_graph.py.mako @@ -348,7 +348,7 @@ def main(top_block_cls=${class_name}, options=None): tb.start(${flow_graph.get_option('max_nouts') or ''}) % endif % if flow_graph.get_option('qt_qss_theme'): - tb.setStyleSheetFromFile(${ flow_graph.get_option('qt_qss_theme') }) + tb.setStyleSheetFromFile("${ flow_graph.get_option('qt_qss_theme') }") % endif tb.show() |