diff options
author | JP Rosevear <jpr@novell.com> | 2005-02-24 12:55:57 +0800 |
---|---|---|
committer | JP Rosevear <jpr@src.gnome.org> | 2005-02-24 12:55:57 +0800 |
commit | 19f878a31095e6c56c0dcac030ddbb8381f6f593 (patch) | |
tree | c9c83b928cea6c167a827b9576656678cfefd52b /shell | |
parent | 516aee1304eef6e5b885a1c5d00a2b80a36fd87a (diff) | |
download | gsoc2013-evolution-19f878a31095e6c56c0dcac030ddbb8381f6f593.tar.gz gsoc2013-evolution-19f878a31095e6c56c0dcac030ddbb8381f6f593.tar.zst gsoc2013-evolution-19f878a31095e6c56c0dcac030ddbb8381f6f593.zip |
Fixes #33287
2005-02-23 JP Rosevear <jpr@novell.com>
Fixes #33287
* e-shell-window.c (e_shell_window_new): set the send/receive
sensitivity when we first start up
svn path=/trunk/; revision=28877
Diffstat (limited to 'shell')
-rw-r--r-- | shell/ChangeLog | 7 | ||||
-rw-r--r-- | shell/e-shell-window.c | 1 |
2 files changed, 8 insertions, 0 deletions
diff --git a/shell/ChangeLog b/shell/ChangeLog index b05a4fae2f..d439f7f6d2 100644 --- a/shell/ChangeLog +++ b/shell/ChangeLog @@ -1,3 +1,10 @@ +2005-02-23 JP Rosevear <jpr@novell.com> + + Fixes #33287 + + * e-shell-window.c (e_shell_window_new): set the send/receive + sensitivity when we first start up + 2005-02-23 Hans Petter Jansson <hpj@novell.com> * e-shell-window-commands.c: diff --git a/shell/e-shell-window.c b/shell/e-shell-window.c index 7e143780dd..644ad02a5a 100644 --- a/shell/e-shell-window.c +++ b/shell/e-shell-window.c @@ -871,6 +871,7 @@ e_shell_window_new (EShell *shell, setup_widgets (window); + update_send_receive_sensitivity (window); g_signal_connect_object (shell, "line_status_changed", G_CALLBACK (shell_line_status_changed_callback), window, 0); gtk_window_set_default_size (GTK_WINDOW (window), 640, 480); |