X-Git-Url: http://git.cinelerra-gg.org/git/?a=blobdiff_plain;f=cinelerra-5.1%2Fplugins%2Fpolar%2Fpolarwindow.C;fp=cinelerra-5.1%2Fplugins%2Fpolar%2Fpolarwindow.C;h=bf7774500fea57bcfa07015e998d19fbe9d62a7f;hb=77815ec03df6a03ed75433e8cf8ae1e83fb76d6e;hp=f4bd9c0bc585e3432943897768500060aa913406;hpb=d85ee0843fbbd79a0a7d2ffa0aac57968e24f6d7;p=goodguy%2Fhistory.git diff --git a/cinelerra-5.1/plugins/polar/polarwindow.C b/cinelerra-5.1/plugins/polar/polarwindow.C index f4bd9c0b..bf777450 100644 --- a/cinelerra-5.1/plugins/polar/polarwindow.C +++ b/cinelerra-5.1/plugins/polar/polarwindow.C @@ -72,6 +72,7 @@ int PolarWindow::close_event() client->save_defaults(); hide_window(); client->send_hide_gui(); + return 1; } DepthSlider::DepthSlider(PolarMain *client, int x, int y) @@ -86,6 +87,7 @@ int DepthSlider::handle_event() { client->depth = get_value(); client->send_configure_change(); + return 1; } AngleSlider::AngleSlider(PolarMain *client, int x, int y) @@ -100,6 +102,7 @@ int AngleSlider::handle_event() { client->angle = get_value(); client->send_configure_change(); + return 1; } AutomatedFn::AutomatedFn(PolarMain *client, PolarWindow *window, int x, int y, int number) @@ -123,5 +126,6 @@ int AutomatedFn::handle_event() update(1); client->automated_function = number; client->send_configure_change(); + return 1; }