diff options
-rw-r--r-- | mate-panel/panel-run-dialog.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mate-panel/panel-run-dialog.c b/mate-panel/panel-run-dialog.c index e7dd6ff6..e61f3ece 100644 --- a/mate-panel/panel-run-dialog.c +++ b/mate-panel/panel-run-dialog.c @@ -132,7 +132,7 @@ _panel_run_get_recent_programs_list (PanelRunDialog *dialog) items[i] && i < PANEL_RUN_MAX_HISTORY; i++) { GtkTreeIter iter; - gtk_list_store_prepend (list, &iter); + gtk_list_store_append (list, &iter); gtk_list_store_set (list, &iter, 0, items[i], -1); } |