X-Git-Url: https://git.cinelerra-gg.org/git/?a=blobdiff_plain;f=cinelerra-5.1%2Fcinelerra%2Fcpanel.C;h=5f8dd4d7c048ba179266cc81b2f30bc950219284;hb=033efab12586e8086014c814a5360f211d228ac3;hp=e73879e4826c0133a73c60b2ece0aa3d4f282682;hpb=307d7f624510fcca7a7f6c1e683796cb73637106;p=goodguy%2Fcinelerra.git diff --git a/cinelerra-5.1/cinelerra/cpanel.C b/cinelerra-5.1/cinelerra/cpanel.C index e73879e4..5f8dd4d7 100644 --- a/cinelerra-5.1/cinelerra/cpanel.C +++ b/cinelerra-5.1/cinelerra/cpanel.C @@ -79,8 +79,8 @@ void CPanel::create_objects() y += operation[CWINDOW_TOOL_WINDOW]->get_h(); subwindow->add_subwindow(operation[CWINDOW_TITLESAFE] = new CPanelTitleSafe(mwindow, this, x, y)); y += operation[CWINDOW_TITLESAFE]->get_h(); - x += (w - BC_Slider::get_span(1)) / 2; y += 15; - subwindow->add_subwindow(cpanel_zoom = new CPanelZoom(mwindow, this, x, y, h-y-20)); + x += (w - BC_Slider::get_span(1)) / 2; y += yS(15); + subwindow->add_subwindow(cpanel_zoom = new CPanelZoom(mwindow, this, x, y, h-y-yS(20))); } void CPanel::reposition_buttons(int x, int y, int h) @@ -95,9 +95,9 @@ void CPanel::reposition_buttons(int x, int y, int h) y += operation[i]->get_h(); } x += (w - BC_Slider::get_span(1)) / 2; - y += 15; + y += yS(15); h = this->h - this->y; - cpanel_zoom->reposition_window(x, y, w, h-y-20); + cpanel_zoom->reposition_window(x, y, w, h-y-yS(20)); cpanel_zoom->set_pointer_motion_range(h); } @@ -132,6 +132,7 @@ void CPanel::set_operation(int value) operation[CWINDOW_CAMERA]->get_value() || operation[CWINDOW_PROJECTOR]->get_value() ) { cpanel_zoom->set_shown(1); + subwindow->update_canvas(0); } else cpanel_zoom->set_shown(0); @@ -387,7 +388,8 @@ int CPanelZoom::handle_event() double zoom = pow(10.,value); switch( mwindow->edl->session->cwindow_operation ) { case CWINDOW_ZOOM: - gui->subwindow->zoom_canvas(zoom, 1); + gui->subwindow->canvas->set_zoom(mwindow->edl, zoom); + gui->subwindow->update_canvas(); break; case CWINDOW_CAMERA: aidx = AUTOMATION_CAMERA_Z;