group selection rework, rm inv title clr, add titlebar alpha textbox, default proxy...
[goodguy/cinelerra.git] / cinelerra-5.1 / cinelerra / edit.C
index e40b8c18924c5f1d712d620582b8c08240c062fe..8ef1735538305bc39f4729e21e76a4fca407f246 100644 (file)
@@ -389,7 +389,8 @@ int Edit::dump(FILE *fp)
                asset,
                asset ? asset->path : "");
        fflush(fp);
-       fprintf(fp,"      channel %d, color %08x, group_id %d\n", channel, color, group_id);
+       fprintf(fp,"      channel %d, color %08x, group_id %d, is_selected %d\n",
+               channel, color, group_id, is_selected);
        if(transition)
        {
                fprintf(fp,"      TRANSITION %p\n", transition);
@@ -406,7 +407,7 @@ int Edit::load_properties(FileXML *file, int64_t &startproject)
        length = file->tag.get_property("LENGTH", (int64_t)0);
        hard_left = file->tag.get_property("HARD_LEFT", (int64_t)0);
        hard_right = file->tag.get_property("HARD_RIGHT", (int64_t)0);
-       color = file->tag.get_property("COLOR", (int64_t)-1);
+       color = file->tag.get_property("COLOR", 0);
        group_id = file->tag.get_property("GROUP_ID", group_id);
        user_title[0] = 0;
        file->tag.get_property("USER_TITLE", user_title);