From 35d847e3f2062885718d7f0cbeba9cb6aa78b550 Mon Sep 17 00:00:00 2001
From: David Brown <dbrown@gitlab.riscosopen.org>
Date: Tue, 16 Sep 1997 08:22:59 +0000
Subject: [PATCH] Added saving of state of hotlist (directories are open or
 closed)

---
 c/Hotlist | 19 ++++++++++++++++---
 1 file changed, 16 insertions(+), 3 deletions(-)

diff --git a/c/Hotlist b/c/Hotlist
index ba96852..38154ac 100644
--- a/c/Hotlist
+++ b/c/Hotlist
@@ -2748,7 +2748,14 @@ static _kernel_oserror * hotlist_save_entries(FILE * fileptr, hotlist_item * lis
           if (type == 0 || (type == 1 && list->flags & HOTLIST_G_IS_SELECTED))
           {
             HotlistWrite(fprintf(fileptr, "<h4>%s</h4>\n", list->name));
-            HotlistWrite(fprintf(fileptr, "<ul>\n"));
+            if (list->flags & HOTLIST_D_IS_OPEN)
+            {
+              HotlistWrite(fprintf(fileptr, "<ul><!--open-->\n"));
+            }
+            else
+            {
+              HotlistWrite(fprintf(fileptr, "<ul>\n"));
+            }
           }
           /* Recursive call for the directory contents First, */
           /* write the entry header.                          */
@@ -3103,6 +3110,11 @@ static _kernel_oserror * hotlist_load_directory(FILE * fileptr, hotlist_item * t
         e = hotlist_new_directory(target, next_directory_name, HOTLIST_POSITION_END, &new_dir);
         if (e) goto hotlist_load_directory_exit;
 
+        if (strstr(string_buffer, "<!--open-->") != NULL)
+        {
+          new_dir->flags |= HOTLIST_D_IS_OPEN;
+        }
+
         free(next_directory_name);
         next_directory_name = NULL;
 
@@ -5547,12 +5559,13 @@ static void hotlist_get_selected_shape_r(hotlist_item * list,
 
       if (*found)
       {
-        if (newxmin                     < box->xmin) box->xmin = newxmin;
-        if (newxmax                     > box->xmax) box->xmax = newxmax;
+        if (newxmin < box->xmin) box->xmin = newxmin;
+        if (newxmax > box->xmax) box->xmax = newxmax;
         box->ymin = -((*itemno)+1)* item_height;
       }
       else
       {
+        /* This section run for first selected item found only */
         box->xmin = newxmin;
         box->xmax = newxmax;
         box->ymax = -(*itemno)     * item_height;
-- 
GitLab