diff options
Diffstat (limited to 'grc/data/platforms/python')
-rw-r--r-- | grc/data/platforms/python/blocks/preferences.xml | 6 | ||||
-rw-r--r-- | grc/data/platforms/python/flow_graph.tmpl | 4 |
2 files changed, 8 insertions, 2 deletions
diff --git a/grc/data/platforms/python/blocks/preferences.xml b/grc/data/platforms/python/blocks/preferences.xml index e426b5a34..62f7e17c1 100644 --- a/grc/data/platforms/python/blocks/preferences.xml +++ b/grc/data/platforms/python/blocks/preferences.xml @@ -17,6 +17,12 @@ <type>string</type> </param> <param> + <name>Window Prefix</name> + <key>window_prefix</key> + <value>GRC</value> + <type>string</type> + </param> + <param> <name>File Open</name> <key>file_open</key> <value></value> diff --git a/grc/data/platforms/python/flow_graph.tmpl b/grc/data/platforms/python/flow_graph.tmpl index 2341ef46f..0d02d258e 100644 --- a/grc/data/platforms/python/flow_graph.tmpl +++ b/grc/data/platforms/python/flow_graph.tmpl @@ -42,13 +42,13 @@ $imp #set $param_str = ', '.join(['self'] + ['%s=%s'%(param.get_id(), param.get_make()) for param in $parameters]) #if $generate_options == 'wx_gui' #from gnuradio.grc.platforms.base.Constants import DATA_DIR - #from gnuradio.grc.gui.Constants import MAIN_WINDOW_PREFIX + #from gnuradio.grc.gui import Preferences class $(class_name)(grc_wxgui.top_block_gui): def __init__($param_str): grc_wxgui.top_block_gui.__init__( self, - title="$MAIN_WINDOW_PREFIX - Executing: $flow_graph.get_option('title')", + title="$Preferences.window_prefix() - Executing: $flow_graph.get_option('title')", icon="$(os.path.join($DATA_DIR, 'grc-icon-32.png'))", ) #elif $generate_options == 'no_gui' |