mirror of https://github.com/GNOME/gimp.git
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:
parent
7d109fadff
commit
58f54b0a8b
14
ChangeLog
14
ChangeLog
|
@ -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>
|
||||
|
||||
|
|
|
@ -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 ();
|
||||
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue