Credit Andrew - fix vorbis audio which was scratchy and ensure aging plugin does...
[goodguy/cinelerra.git] / cinelerra-5.1 / cinelerra / loadmode.C
index 04193b23d00797858a48e3fa9269e95988f985d9..6e12593da63f633af82858eec9418611b76e2299 100644 (file)
@@ -52,9 +52,9 @@ static const char *mode_text[] =
        N_("Concatenate to existing tracks"),
        N_("Paste over selection/at insertion point"),
        N_("Create new resources only"),
-       N_("EDL as Clip"),
-       N_("EDL as Nested"),
-       N_("EDL as Reference"),
+       N_("EDL"),
+       N_("Nested"),
+       N_("Reference"),
 };
 
 
@@ -224,10 +224,10 @@ void LoadMode::create_objects()
                ix += pad;
        }
 
-       ix = 0;  iy = mh+pad;
+       ix = xS(25);  iy = mh+pad;
        const char *mode_text = mode_to_text(*load_mode);
        textbox = new BC_TextBox(x+ix, y+iy,
-               mwindow->theme->loadmode_w, 1, mode_text);
+               mwindow->theme->loadmode_w-2*ix, 1, mode_text);
        window->add_subwindow(textbox);
        ix += textbox->get_w();
        listbox = new LoadModeListBox(window, this, x+ix, y+iy);
@@ -274,7 +274,7 @@ int LoadMode::reposition_window(int x, int y)
                ix += pad;
        }
 
-       ix = 0;  iy = mh+pad;
+       ix = xS(25);  iy = mh+pad;
        textbox->reposition_window(x+ix, y+iy);
        ix += textbox->get_w();
        listbox->reposition_window(x+ix, y+iy);