Hello all

After spending a bit of time working with Florent on the C41 plugin (although he wrote it !), I just discovered that on the gamma correction window that you can use the color picker. Which is not really new, but the plugin window is too small to show the "apply" button.

Originally the code is

GammaWindow::GammaWindow(GammaMain *client, int x, int y)
 : BC_Window(client->gui_string, x,
     y,
    500,
    500,
    500,
    500,
    0,
    0)


should be

GammaWindow::GammaWindow(GammaMain *client, int x, int y)
 : BC_Window(client->gui_string, x,
     y,
    500,
    500,
    500,
    500,
    1,
    0)

The 1 allows you to resize the window and then show the "use the color picker" function... :-X The values 500 are not the original either, I changed them from 350 or something....

A $0.5 bug ! but can actuallly make the gamma correction working properly !
Cheers
E




_______________________________________________
Cinelerra mailing list
[email protected]
https://init.linpro.no/mailman/skolelinux.no/listinfo/cinelerra

Reply via email to