Show dialog after updating the lists. This looks better and works around

Mon Mar 15 11:30:04 1999  Owen Taylor  <otaylor@redhat.com>

	* app/layers_dialog.c (lc_dialog_create): Show dialog
	after updating the lists. This looks better and
	works around an obscure bug with size requests
	that was being triggered.

Sun Mar 14 23:33:14 1999  Owen Taylor  <otaylor@redhat.com>

	* app/app_procs.c (app_exit_finish): Call plug_in_kill()
	before procedural_db_free().
This commit is contained in:
Owen Taylor 1999-03-15 16:31:45 +00:00 committed by Owen Taylor
parent 7d109fadff
commit 58f54b0a8b
4 changed files with 20 additions and 6 deletions

View File

@ -1,8 +1,20 @@
Mon Mar 15 11:30:04 1999 Owen Taylor <otaylor@redhat.com>
* app/layers_dialog.c (lc_dialog_create): Show dialog
after updating the lists. This looks better and
works around an obscure bug with size requests
that was being triggered.
Sun Mar 14 23:33:14 1999 Owen Taylor <otaylor@redhat.com>
* app/app_procs.c (app_exit_finish): Call plug_in_kill()
before procedural_db_free().
Sun Mar 14 23:27:38 1999 Owen Taylor <otaylor@redhat.com>
* app/channels_dialog.c app/global_edit.c app/gradient.c
app/layers_dialog.c app/text_tool.c:
Use gtk_scrolled_window_add_with_viewport()
Use gtk_scrolled_window_add_with_viewport()
Sun Mar 14 15:27:15 EST 1999 Matt Wilson <msw@gimp.org>

View File

@ -565,8 +565,8 @@ app_exit_finish (void)
pattern_select_dialog_free ();
palette_free ();
paint_funcs_free ();
procedural_db_free ();
plug_in_kill ();
procedural_db_free ();
menus_quit ();
tile_swap_exit ();

View File

@ -369,14 +369,15 @@ lc_dialog_create (int gimage_id)
gtk_widget_show (GTK_DIALOG(lc_shell)->action_area);
gtk_widget_show (lc_shell);
/* Make sure the channels page is realized */
gtk_notebook_set_page (GTK_NOTEBOOK (notebook), 1);
gtk_notebook_set_page (GTK_NOTEBOOK (notebook), 0);
layers_dialog_update (gimage_id);
channels_dialog_update (gimage_id);
gtk_widget_show (lc_shell);
gdisplays_flush ();
}
else

View File

@ -369,14 +369,15 @@ lc_dialog_create (int gimage_id)
gtk_widget_show (GTK_DIALOG(lc_shell)->action_area);
gtk_widget_show (lc_shell);
/* Make sure the channels page is realized */
gtk_notebook_set_page (GTK_NOTEBOOK (notebook), 1);
gtk_notebook_set_page (GTK_NOTEBOOK (notebook), 0);
layers_dialog_update (gimage_id);
channels_dialog_update (gimage_id);
gtk_widget_show (lc_shell);
gdisplays_flush ();
}
else