X-Git-Url: https://cinelerra-gg.org/git/?a=blobdiff_plain;f=cinelerra-5.1%2Fplugins%2Fcolor3way%2Fcolor3waywindow.C;h=d55f2cd5eadc5e8367a347dec012f4623036bbea;hb=6f0ddd863f975ca407ddf08c59a9eb1db8d2fd72;hp=1e188f26dbf07ab570beaff0dd179a6481b85043;hpb=c857b2fb7965d27d86d5785fb9f1b8957a871a1a;p=goodguy%2Fcinelerra.git diff --git a/cinelerra-5.1/plugins/color3way/color3waywindow.C b/cinelerra-5.1/plugins/color3way/color3waywindow.C index 1e188f26..d55f2cd5 100644 --- a/cinelerra-5.1/plugins/color3way/color3waywindow.C +++ b/cinelerra-5.1/plugins/color3way/color3waywindow.C @@ -39,8 +39,8 @@ Color3WayWindow::Color3WayWindow(Color3WayMain *plugin) : PluginClientWindow(plugin, plugin->w, plugin->h, - 680, - 370, + xS(720), + yS(400), 1) { this->plugin = plugin; @@ -554,8 +554,8 @@ int Color3WayPoint::cursor_leave_event() int Color3WayPoint::keypress_event() { int result = 0; - if(!active) return 0; - if(ctrl_down() || shift_down()) return 0; + if(!active) return context_help_check_and_show(); + if(ctrl_down() || shift_down()) return context_help_check_and_show(); switch(get_keypress()) { @@ -584,6 +584,7 @@ int Color3WayPoint::keypress_event() plugin->send_configure_change(); gui->update(); } + else result = context_help_check_and_show(); return result; }