mirror of https://github.com/MidnightCommander/mc
1999-09-21 Federico Mena Quintero <federico@redhat.com>
* gdesktop.c (desktop_reload_icons): Do not call x_flush_events() when we are done.
This commit is contained in:
parent
cb0ca0102a
commit
b8bb09e58d
|
@ -5,7 +5,7 @@ AC_INIT(create_vcs)
|
|||
AC_CONFIG_HEADER(config.h)
|
||||
|
||||
PACKAGE=mc
|
||||
VERSION=4.5.39-pre6
|
||||
VERSION=4.5.39-pre8
|
||||
AC_DEFINE_UNQUOTED(PACKAGE, "$PACKAGE")
|
||||
AC_DEFINE_UNQUOTED(VERSION, "$VERSION")
|
||||
AC_SUBST(VERSION)
|
||||
|
|
|
@ -1,5 +1,8 @@
|
|||
1999-09-21 Federico Mena Quintero <federico@redhat.com>
|
||||
|
||||
* gdesktop.c (desktop_reload_icons): Do not call x_flush_events()
|
||||
when we are done.
|
||||
|
||||
* gsession.c (create_panel_from_info): The widgets are not created
|
||||
yet, so just set the panel->list_type field.
|
||||
|
||||
|
|
|
@ -704,9 +704,6 @@ desktop_reload_icons (int user_pos, int xpos, int ypos)
|
|||
|
||||
g_slist_free (need_position_list);
|
||||
gnome_metadata_unlock ();
|
||||
|
||||
/* Flush events to make the icons paint themselves */
|
||||
x_flush_events ();
|
||||
}
|
||||
|
||||
static WPanel *create_panel_from_desktop(); /* Fwd decl */
|
||||
|
|
|
@ -421,8 +421,10 @@ void dlg_broadcast_msg_to (Dlg_head *h, int message, int reverse, int flags)
|
|||
|
||||
wi = p;
|
||||
/* if (p->widget->options & flags) */
|
||||
#ifdef HAVE_GNOME
|
||||
if (is_a_panel (wi->widget))
|
||||
was_panel |= TRUE;
|
||||
#endif
|
||||
send_message (h, wi->widget, message, 0);
|
||||
} while (first != p);
|
||||
#ifdef HAVE_GNOME
|
||||
|
|
Loading…
Reference in New Issue