mirror of
https://github.com/MidnightCommander/mc
synced 2025-01-11 13:59:18 +03:00
1999-05-26 Miguel de Icaza <miguel@nuclecu.unam.mx>
* gscreen.c (panel_fill_panel_icons): Add a hack to work around gnome-libs/gnome-icon-list bug that did not reset the proper values. A fix will be available in gnome-libs-1.0.10. Fixes bug #1338.
This commit is contained in:
parent
8c90a5a44d
commit
e082388cb9
@ -1,5 +1,11 @@
|
|||||||
1999-05-26 Miguel de Icaza <miguel@nuclecu.unam.mx>
|
1999-05-26 Miguel de Icaza <miguel@nuclecu.unam.mx>
|
||||||
|
|
||||||
|
* gscreen.c (panel_fill_panel_icons): Add a hack to work around
|
||||||
|
gnome-libs/gnome-icon-list bug that did not reset the proper
|
||||||
|
values. A fix will be available in gnome-libs-1.0.10.
|
||||||
|
|
||||||
|
Fixes bug #1338.
|
||||||
|
|
||||||
* gcmd.c (gnome_close_panel): Remove filter_w
|
* gcmd.c (gnome_close_panel): Remove filter_w
|
||||||
|
|
||||||
* gscreen.c (x_filter_changed): Update nothing.
|
* gscreen.c (x_filter_changed): Update nothing.
|
||||||
|
@ -701,8 +701,8 @@ gnome_filter_cmd (GtkWidget *widget, WPanel *panel)
|
|||||||
gtk_label_set_text (GTK_LABEL (panel->status), panel->filter);
|
gtk_label_set_text (GTK_LABEL (panel->status), panel->filter);
|
||||||
|
|
||||||
gnome_entry_save_history (GNOME_ENTRY (entry));
|
gnome_entry_save_history (GNOME_ENTRY (entry));
|
||||||
reread_cmd ();
|
|
||||||
x_filter_changed (panel);
|
x_filter_changed (panel);
|
||||||
|
reread_cmd ();
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
gtk_widget_destroy (filter_dlg);
|
gtk_widget_destroy (filter_dlg);
|
||||||
|
@ -243,6 +243,18 @@ panel_fill_panel_icons (WPanel *panel)
|
|||||||
gnome_icon_list_freeze (icons);
|
gnome_icon_list_freeze (icons);
|
||||||
gnome_icon_list_clear (icons);
|
gnome_icon_list_clear (icons);
|
||||||
|
|
||||||
|
/*
|
||||||
|
* HACK_BEGIN:
|
||||||
|
* Temporary hack for pre-gnome-libs-1.0.10
|
||||||
|
*
|
||||||
|
* Remove after wildely deployed
|
||||||
|
*/
|
||||||
|
icons->last_selected = 0;
|
||||||
|
icons->last_clicked = 0;
|
||||||
|
/*
|
||||||
|
* HACK_END:
|
||||||
|
*/
|
||||||
|
|
||||||
for (i = 0; i < top; i++){
|
for (i = 0; i < top; i++){
|
||||||
file_entry *fe = &panel->dir.list [i];
|
file_entry *fe = &panel->dir.list [i];
|
||||||
int p;
|
int p;
|
||||||
|
Loading…
Reference in New Issue
Block a user