From f795745019d1bbfcc9bbcf70ffe56ca81639e769 Mon Sep 17 00:00:00 2001 From: Dom Lachowicz Date: Wed, 9 May 2007 16:30:23 +0000 Subject: [PATCH] GtkTreeView doesn't expand/collapse with Right/Left cursor keys on Windows 2007-05-09 Dom Lachowicz * modules/engines/ms-windows/Theme/gtk-2.0/gtkrc: GtkTreeView doesn't expand/collapse with Right/Left cursor keys on Windows (#436269, Daniel Atallah) svn path=/trunk/; revision=17810 --- ChangeLog | 6 ++++++ modules/engines/ms-windows/Theme/gtk-2.0/gtkrc | 10 +++++++++- 2 files changed, 15 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index d5f902a0fc..319a0f67ea 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2007-05-09 Dom Lachowicz + + * modules/engines/ms-windows/Theme/gtk-2.0/gtkrc: GtkTreeView doesn't + expand/collapse with Right/Left cursor keys on Windows + (#436269, Daniel Atallah) + 2007-05-09 Cody Russell * gtk/gtkmenu.c: diff --git a/modules/engines/ms-windows/Theme/gtk-2.0/gtkrc b/modules/engines/ms-windows/Theme/gtk-2.0/gtkrc index 0553fb0b2c..a5406a750c 100755 --- a/modules/engines/ms-windows/Theme/gtk-2.0/gtkrc +++ b/modules/engines/ms-windows/Theme/gtk-2.0/gtkrc @@ -43,4 +43,12 @@ style "msw-default" { } } -class "*" style "msw-default" \ No newline at end of file +class "*" style "msw-default" + +binding "ms-windows-tree-view" +{ + bind "Right" { "expand-collapse-cursor-row" (1,1,0) } + bind "Left" { "expand-collapse-cursor-row" (1,0,0) } +} + +class "GtkTreeView" binding "ms-windows-tree-view"