Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Andre Miranda
xfce4-taskmanager
Commits
b8da7689
Commit
b8da7689
authored
Jun 11, 2020
by
Andre Miranda
Browse files
Add tooltip to show full command
parent
eaca83b9
Pipeline
#697
passed with stages
in 1 minute and 27 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
src/process-tree-view.c
View file @
b8da7689
...
...
@@ -220,6 +220,7 @@ xtm_process_tree_view_init (XtmProcessTreeView *treeview)
gtk_tree_sortable_set_sort_column_id
(
GTK_TREE_SORTABLE
(
treeview
->
model
),
sort_column_id
,
sort_type
);
}
gtk_tree_view_set_tooltip_column
(
GTK_TREE_VIEW
(
treeview
),
XTM_PTV_COLUMN_COMMAND
);
gtk_tree_view_set_search_equal_func
(
GTK_TREE_VIEW
(
treeview
),
(
GtkTreeViewSearchEqualFunc
)
search_func
,
NULL
,
NULL
);
g_signal_connect
(
treeview
,
"columns-changed"
,
G_CALLBACK
(
columns_changed
),
NULL
);
g_signal_connect
(
treeview
,
"button-press-event"
,
G_CALLBACK
(
treeview_clicked
),
NULL
);
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment