mirror of
https://github.com/varun-r-mallya/sysprof.git
synced 2025-12-31 20:36:25 +00:00
callgraph: allow going backward with alt+left arrow
Sometimes its really annoying to dive into a descendant and then want to go back to where you were. This uses alt+left arrow to go back to the previous node. It doesn't, however, re-expand the tree to the previous state.
This commit is contained in:
@ -32,6 +32,10 @@ G_DECLARE_DERIVABLE_TYPE (SpCallgraphView, sp_callgraph_view, SP, CALLGRAPH_VIEW
|
||||
struct _SpCallgraphViewClass
|
||||
{
|
||||
GtkBinClass parent_class;
|
||||
|
||||
void (*go_previous) (SpCallgraphView *self);
|
||||
|
||||
gpointer padding[8];
|
||||
};
|
||||
|
||||
GtkWidget *sp_callgraph_view_new (void);
|
||||
|
||||
Reference in New Issue
Block a user