Skip to content
Snippets Groups Projects
Commit e0238f0b authored by Eric Koegel's avatar Eric Koegel
Browse files

Selection follows mouse for treeview

parent 5cd4001a
No related branches found
No related tags found
No related merge requests found
......@@ -731,6 +731,10 @@ battery_button_create_popup (BatteryButton *button)
/* turn off alternating row colors, themes will probably override this */
gtk_tree_view_set_rules_hint (GTK_TREE_VIEW (button->priv->treeview), FALSE);
/* selection follows mouse */
gtk_tree_view_set_hover_selection (GTK_TREE_VIEW (button->priv->treeview), TRUE);
col = gtk_tree_view_column_new ();
renderer = gtk_cell_renderer_pixbuf_new ();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment