summaryrefslogtreecommitdiff
path: root/grc/data/platforms/python
diff options
context:
space:
mode:
Diffstat (limited to 'grc/data/platforms/python')
-rw-r--r--grc/data/platforms/python/flow_graph.tmpl7
1 files changed, 5 insertions, 2 deletions
diff --git a/grc/data/platforms/python/flow_graph.tmpl b/grc/data/platforms/python/flow_graph.tmpl
index 0d02d258e..6bf79fc8b 100644
--- a/grc/data/platforms/python/flow_graph.tmpl
+++ b/grc/data/platforms/python/flow_graph.tmpl
@@ -41,15 +41,18 @@ $imp
#set $class_name = $flow_graph.get_option('id')
#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 import Preferences
+ #import gtk
+ #set $icon = gtk.IconTheme().lookup_icon('gnuradio-grc', 32, 0)
class $(class_name)(grc_wxgui.top_block_gui):
def __init__($param_str):
grc_wxgui.top_block_gui.__init__(
self,
title="$Preferences.window_prefix() - Executing: $flow_graph.get_option('title')",
- icon="$(os.path.join($DATA_DIR, 'grc-icon-32.png'))",
+ #if $icon
+ icon="$icon.get_filename()",
+ #end if
)
#elif $generate_options == 'no_gui'
class $(class_name)(gr.top_block):