aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--shell/ChangeLog5
-rw-r--r--shell/e-splash.c2
2 files changed, 7 insertions, 0 deletions
diff --git a/shell/ChangeLog b/shell/ChangeLog
index 405273b446..60c4cc3008 100644
--- a/shell/ChangeLog
+++ b/shell/ChangeLog
@@ -1,3 +1,8 @@
+2000-12-12 Jeffrey Stedfast <fejj@helixcode.com>
+
+ * e-splash.c (button_press_event): Return TRUE as we have handled
+ the event.
+
2000-12-12 Dan Winship <danw@helixcode.com>
* e-shell-view.c (get_control_for_uri): Pass path+1 rather than
diff --git a/shell/e-splash.c b/shell/e-splash.c
index 812166fa29..ce6aaae6b7 100644
--- a/shell/e-splash.c
+++ b/shell/e-splash.c
@@ -264,6 +264,8 @@ button_press_event (GtkWidget *widget, GdkEventButton *event, gpointer data)
ESplash *splash = (ESplash *) data;
gtk_widget_hide (GTK_WIDGET (splash));
+
+ return TRUE;
}