aboutsummaryrefslogtreecommitdiffstats
path: root/shell/e-setup.c
diff options
context:
space:
mode:
authorJason Leach <jasonleach@usa.net>2000-12-26 21:05:05 +0800
committerJacob Leach <jleach@src.gnome.org>2000-12-26 21:05:05 +0800
commit760c9012696de63361347e92ff8ae1d7eb009050 (patch)
tree1bc681b17a349d4b14841ca5628e545f476b062f /shell/e-setup.c
parent68186009b294f8f66d159ce8db2228ed6bba8599 (diff)
downloadgsoc2013-evolution-760c9012696de63361347e92ff8ae1d7eb009050.tar
gsoc2013-evolution-760c9012696de63361347e92ff8ae1d7eb009050.tar.gz
gsoc2013-evolution-760c9012696de63361347e92ff8ae1d7eb009050.tar.bz2
gsoc2013-evolution-760c9012696de63361347e92ff8ae1d7eb009050.tar.lz
gsoc2013-evolution-760c9012696de63361347e92ff8ae1d7eb009050.tar.xz
gsoc2013-evolution-760c9012696de63361347e92ff8ae1d7eb009050.tar.zst
gsoc2013-evolution-760c9012696de63361347e92ff8ae1d7eb009050.zip
Fix a crash when the user tries to "Submit bug report" but doesn't have
2000-12-23 Jason Leach <jasonleach@usa.net> * e-shell-view-menu.c (command_run_bugbuddy): Fix a crash when the user tries to "Submit bug report" but doesn't have bug-buddy installed. Bug #633. 2000-12-23 Jason Leach <jasonleach@usa.net> * e-setup.c (copy_default_stuff): Make the "Evolution installation" dialog resizable. Bug #742. (check_evolution_directory): Here too. svn path=/trunk/; revision=7174
Diffstat (limited to 'shell/e-setup.c')
-rw-r--r--shell/e-setup.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/shell/e-setup.c b/shell/e-setup.c
index d9fc75f1dd..b1255906fb 100644
--- a/shell/e-setup.c
+++ b/shell/e-setup.c
@@ -122,6 +122,8 @@ check_evolution_directory (const char *evolution_directory)
gtk_widget_show (label1);
gtk_widget_show (label2);
+ gtk_window_set_policy (GTK_WINDOW (dialog), FALSE, TRUE, FALSE);
+
result = gnome_dialog_run_and_close (GNOME_DIALOG (dialog));
if (result != 0) {
@@ -196,6 +198,8 @@ copy_default_stuff (const char *evolution_directory)
gtk_widget_show (label2);
gtk_widget_show (label3);
+ gtk_window_set_policy (GTK_WINDOW (dialog), FALSE, TRUE, FALSE);
+
result = gnome_dialog_run_and_close (GNOME_DIALOG (dialog));
if (result != 0)
return FALSE;