From e9dc381d3ace3404d0eafe94eb6da3b9a843abb8 Mon Sep 17 00:00:00 2001 From: Matthew Barnes Date: Wed, 17 Feb 2010 19:45:28 -0500 Subject: BugĀ 587014 - Magic space does not work as expected MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Neither ETree::key-press nor ETableItem::key-press signal definitions specify a GSignalAccumulator that terminates the signal emission when a handler returns TRUE, and Evolution 2.29 connects multiple handlers to ETree::key-press. When the space key is pressed, the first handler implements the magic space bar behavior and returns TRUE, which should terminate signal emission but doesn't because there's no accumulator function on the signal. So the second handler runs and checks for other keys besides space. It returns FALSE since it didn't handle the key press. End result: emission site gets back FALSE (from the second handler) as the return value, so it thinks the key press was not handled at all and invokes the fallback handler -- e_selection_model_toggle_single_row() -- which -unselects- the newly selected row, making it appear the next unread message was never selected. Several other ETable-related signals that return "handled" flags also lack GSignalAccumulator functions. I've made a note to myself to fix those as well. --- e-util/e-marshal.list | 2 ++ 1 file changed, 2 insertions(+) (limited to 'e-util') diff --git a/e-util/e-marshal.list b/e-util/e-marshal.list index b0be6abe05..6b70a9e3fe 100644 --- a/e-util/e-marshal.list +++ b/e-util/e-marshal.list @@ -1,6 +1,8 @@ BOOLEAN:BOXED,STRING BOOLEAN:BOXED,POINTER,POINTER +BOOLEAN:INT,INT,BOXED BOOLEAN:INT,INT,OBJECT,INT,INT,UINT +BOOLEAN:INT,POINTER,INT,BOXED BOOLEAN:INT,POINTER,INT,OBJECT,INT,INT,UINT BOOLEAN:NONE BOOLEAN:OBJECT,DOUBLE,DOUBLE,BOOLEAN -- cgit