X-Git-Url: https://git.cinelerra-gg.org/git/?p=goodguy%2Fcinelerra.git;a=blobdiff_plain;f=cinelerra-5.1%2Fcinelerra%2Fformatpopup.C;h=6252b0c2b4d6eb07ea304ab33ca912c293ca74cf;hp=66f1e72f8b713d8291f926db9192055b7b347b0b;hb=0df48ad2d876409c5beeae2e21933a728ea76c33;hpb=f4204ea29aa3760a91c10791944ab848dd74ef8c diff --git a/cinelerra-5.1/cinelerra/formatpopup.C b/cinelerra-5.1/cinelerra/formatpopup.C index 66f1e72f..6252b0c2 100644 --- a/cinelerra-5.1/cinelerra/formatpopup.C +++ b/cinelerra-5.1/cinelerra/formatpopup.C @@ -28,7 +28,7 @@ FormatPopup::FormatPopup(int x, int y, int do_audio, int do_video, int use_brender) - : BC_ListBox(x, y, 200, 200, LISTBOX_TEXT, 0, 0, 0, 1, 0, 1) + : BC_ListBox(x, y, xS(200), yS(200), LISTBOX_TEXT, 0, 0, 0, 1, 0, 1) { this->do_audio = do_audio; this->do_video = do_video; @@ -59,7 +59,10 @@ void FormatPopup::create_objects() post_item(FILE_JPEG); post_item(FILE_JPEG_LIST); + if(!use_brender) { + post_item(FILE_GIF); + post_item(FILE_GIF_LIST); #ifdef HAVE_OPENEXR post_item(FILE_EXR); post_item(FILE_EXR_LIST); @@ -101,7 +104,7 @@ int FormatPopup::handle_event() FFMPEGPopup::FFMPEGPopup(int x, int y) - : BC_ListBox(x, y, 100, 200, LISTBOX_TEXT, 0, 0, 0, 1, 0, 1) + : BC_ListBox(x, y, xS(100), yS(200), LISTBOX_TEXT, 0, 0, 0, 1, 0, 1) { set_tooltip(_("Set ffmpeg file type")); }