diff options
author | Sebastian Koslowski <koslowski@kit.edu> | 2016-05-27 15:19:11 +0200 |
---|---|---|
committer | Sebastian Koslowski <koslowski@kit.edu> | 2016-05-30 15:46:37 +0200 |
commit | d290917e982ba4473a03e5a7e1acaa1e50c59f3d (patch) | |
tree | 2cc68a254358155085a4522d2a59f08a5518c180 /grc/gui/Block.py | |
parent | 498715deea12451bd271d20b51c02f01530acd14 (diff) |
grc: gtk3: update props dialog
Diffstat (limited to 'grc/gui/Block.py')
-rw-r--r-- | grc/gui/Block.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/grc/gui/Block.py b/grc/gui/Block.py index f8687be42f..5e5c5c402c 100644 --- a/grc/gui/Block.py +++ b/grc/gui/Block.py @@ -180,7 +180,7 @@ class Block(Element, _Block): font=PARAM_FONT, key=self._key )] else: - markups = [param.get_markup() for param in self.get_params() if param.get_hide() not in ('all', 'part')] + markups = [param.format_block_surface_markup() for param in self.get_params() if param.get_hide() not in ('all', 'part')] if markups: layout = Gtk.DrawingArea().create_pango_layout('') layout.set_spacing(LABEL_SEPARATION*Pango.SCALE) |