mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-11-10 02:40:11 +00:00
Oops, return if the unmap test fails. (test_reload_sequence): Use
2005-09-28 Federico Mena Quintero <federico@ximian.com> * tests/autotestfilechooser.c (test_reload_sequence): Oops, return if the unmap test fails. (test_reload_sequence): Use gtk_widget_show_now() instead of gtk_widget_show() for the dialog. Thanks to Tim Janik for noticing these.
This commit is contained in:
parent
c5d43cdbef
commit
e14ad12b3f
@ -1,3 +1,11 @@
|
||||
2005-09-28 Federico Mena Quintero <federico@ximian.com>
|
||||
|
||||
* tests/autotestfilechooser.c (test_reload_sequence): Oops, return
|
||||
if the unmap test fails.
|
||||
(test_reload_sequence): Use gtk_widget_show_now() instead of
|
||||
gtk_widget_show() for the dialog.
|
||||
Thanks to Tim Janik for noticing these.
|
||||
|
||||
2005-09-28 Federico Mena Quintero <federico@ximian.com>
|
||||
|
||||
* tests/testcellrenderertext.c: New file with a set of tests for
|
||||
|
@ -1,3 +1,11 @@
|
||||
2005-09-28 Federico Mena Quintero <federico@ximian.com>
|
||||
|
||||
* tests/autotestfilechooser.c (test_reload_sequence): Oops, return
|
||||
if the unmap test fails.
|
||||
(test_reload_sequence): Use gtk_widget_show_now() instead of
|
||||
gtk_widget_show() for the dialog.
|
||||
Thanks to Tim Janik for noticing these.
|
||||
|
||||
2005-09-28 Federico Mena Quintero <federico@ximian.com>
|
||||
|
||||
* tests/testcellrenderertext.c: New file with a set of tests for
|
||||
|
@ -257,7 +257,7 @@ test_action_widgets (void)
|
||||
GTK_STOCK_OK,
|
||||
GTK_RESPONSE_ACCEPT,
|
||||
NULL);
|
||||
gtk_widget_show (dialog);
|
||||
gtk_widget_show_now (dialog);
|
||||
|
||||
action = gtk_file_chooser_get_action (GTK_FILE_CHOOSER (dialog));
|
||||
|
||||
@ -322,7 +322,7 @@ test_reload_sequence (gboolean set_folder_before_map)
|
||||
|
||||
/* After mapping, it is loading some folder, either the one that was explicitly set or the default one */
|
||||
|
||||
gtk_widget_show (dialog);
|
||||
gtk_widget_show_now (dialog);
|
||||
|
||||
passed = (impl->current_folder != NULL
|
||||
&& impl->browse_files_model != NULL
|
||||
@ -347,10 +347,12 @@ test_reload_sequence (gboolean set_folder_before_map)
|
||||
&& ((impl->load_state == LOAD_LOADING || impl->load_state == LOAD_FINISHED)
|
||||
? (impl->load_timeout_id == 0 && impl->sort_model != NULL)
|
||||
: TRUE));
|
||||
if (!passed)
|
||||
return FALSE;
|
||||
|
||||
/* Map it again! */
|
||||
|
||||
gtk_widget_show (dialog);
|
||||
gtk_widget_show_now (dialog);
|
||||
|
||||
passed = (impl->current_folder != NULL
|
||||
&& impl->browse_files_model != NULL
|
||||
|
Loading…
Reference in New Issue
Block a user