diff options
author | Sushma Rai <rsushma@src.gnome.org> | 2005-03-11 20:02:48 +0800 |
---|---|---|
committer | Sushma Rai <rsushma@src.gnome.org> | 2005-03-11 20:02:48 +0800 |
commit | 887b0ad8536c0940de0ac053e2da7b2540aa5267 (patch) | |
tree | bc1de760762896fc14f1a110c774aaec1fb870d0 /widgets | |
parent | 29e5339298f35383c7925a3c6f71942c8e164634 (diff) | |
download | gsoc2013-evolution-887b0ad8536c0940de0ac053e2da7b2540aa5267.tar.gz gsoc2013-evolution-887b0ad8536c0940de0ac053e2da7b2540aa5267.tar.zst gsoc2013-evolution-887b0ad8536c0940de0ac053e2da7b2540aa5267.zip |
Handling static capability for disabling general send options at the
right palce. Fixes #73501
svn path=/trunk/; revision=29000
Diffstat (limited to 'widgets')
-rw-r--r-- | widgets/ChangeLog | 5 | ||||
-rw-r--r-- | widgets/misc/e-send-options.c | 1 |
2 files changed, 6 insertions, 0 deletions
diff --git a/widgets/ChangeLog b/widgets/ChangeLog index e7cdc43f73..0f5a28fdff 100644 --- a/widgets/ChangeLog +++ b/widgets/ChangeLog @@ -1,3 +1,8 @@ +2005-03-11 Sushma Rai <rsushma@novell.com> + + * misc/e-send-options.c (setup_widgets): Not showing the send options + notebook tabs, in case general options page is disabled. Fixes #73501 + 2005-02-09 Hans Petter Jansson <hpj@novell.com> * e-timezone-dialog/Makefile.am: diff --git a/widgets/misc/e-send-options.c b/widgets/misc/e-send-options.c index 3be5152ef8..846131ae03 100644 --- a/widgets/misc/e-send-options.c +++ b/widgets/misc/e-send-options.c @@ -472,6 +472,7 @@ setup_widgets (ESendOptionsDialog *sod, Item_type type) priv = sod->priv; if (!priv->gopts_needed) { + gtk_notebook_set_show_tabs (priv->notebook, FALSE); gtk_notebook_set_current_page (priv->notebook, 1); gtk_widget_hide (priv->delay_until); } else |