gtk: detect click on a cell in a TreeView
--------------------------------------------------
Rise to the top 3% as a developer or hire one of them at Toptal: https://topt.al/25cXVn
--------------------------------------------------
Music by Eric Matyas
https://www.soundimage.org
Track title: Isolated
--
Chapters
00:00 Gtk: Detect Click On A Cell In A Treeview
00:57 Answer 1 Score 0
01:10 Accepted Answer Score 6
01:17 Thank you
--
Full question
https://stackoverflow.com/questions/3534...
--
Content licensed under CC BY-SA
https://meta.stackexchange.com/help/lice...
--
Tags
#python #userinterface #gtk #pygtk
#avk47
    Rise to the top 3% as a developer or hire one of them at Toptal: https://topt.al/25cXVn
--------------------------------------------------
Music by Eric Matyas
https://www.soundimage.org
Track title: Isolated
--
Chapters
00:00 Gtk: Detect Click On A Cell In A Treeview
00:57 Answer 1 Score 0
01:10 Accepted Answer Score 6
01:17 Thank you
--
Full question
https://stackoverflow.com/questions/3534...
--
Content licensed under CC BY-SA
https://meta.stackexchange.com/help/lice...
--
Tags
#python #userinterface #gtk #pygtk
#avk47
ACCEPTED ANSWER
Score 6
The row-activated signal is sent when a GTK TreeView row is double-clicked.
ANSWER 2
Score 0
Ah from this grea tutorial and the API docs, I can just connect to the row-activated event, which will give me all the information I need.