aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--shell/ChangeLog5
-rw-r--r--shell/e-folder.c4
2 files changed, 7 insertions, 2 deletions
diff --git a/shell/ChangeLog b/shell/ChangeLog
index 6059608696..511e19dd5f 100644
--- a/shell/ChangeLog
+++ b/shell/ChangeLog
@@ -1,3 +1,8 @@
+2001-08-15 Jason Leach <jleach@ximian.com>
+
+ * e-folder.c (e_folder_set_child_highlight): Emit a "changed"
+ signal at the end of this function. Bug #7232.
+
2001-08-15 Aaron Weber <aaron@ximian.com>
* e-shell-view-menu.c (command_about_box): Changed help menus to
diff --git a/shell/e-folder.c b/shell/e-folder.c
index 017b258766..a73e0193f4 100644
--- a/shell/e-folder.c
+++ b/shell/e-folder.c
@@ -340,12 +340,12 @@ e_folder_set_child_highlight (EFolder *folder,
g_return_if_fail (folder != NULL);
g_return_if_fail (E_IS_FOLDER (folder));
- /* FIXME: Doesn't emit CHANGED. */
-
if (highlighted)
folder->priv->child_highlight++;
else
folder->priv->child_highlight--;
+
+ gtk_signal_emit (GTK_OBJECT (folder), signals[CHANGED]);
}
void