diff options
author | Thomas White <taw@physics.org> | 2018-03-24 18:35:35 +0100 |
---|---|---|
committer | Thomas White <taw@physics.org> | 2018-03-25 20:50:01 +0200 |
commit | 5022deb2bd9615a9521f43724b4c309f5fa13a15 (patch) | |
tree | cb49ccc39e486d493924691b206f06a7e138a38c | |
parent | 93da305a79b15ca3e6c710e80b74fa68d248aea5 (diff) |
Shift+F7 show ONLY blocks in frame
Not the ones after it.
-rw-r--r-- | src/sc_editor.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/sc_editor.c b/src/sc_editor.c index f5d8180..897a2a4 100644 --- a/src/sc_editor.c +++ b/src/sc_editor.c @@ -1582,7 +1582,7 @@ static gboolean key_press_sig(GtkWidget *da, GdkEventKey *event, debug_paragraphs(e); } else if ( event->state & GDK_SHIFT_MASK ) { if ( e->cursor_frame != NULL ) { - show_sc_blocks(e->cursor_frame->scblocks); + show_sc_block(e->cursor_frame->scblocks, ""); } } else { open_debugger(e->cursor_frame); |