X-Git-Url: https://git.llucax.com/z.facultad/75.42/plaqui.git/blobdiff_plain/e5f9e15b59fc1ade287321c796ec7c4b9aa27600..a5ce0f929d3f4b2e8a06cc4cbaabb20a889cd039:/Constructor/codo.cpp?ds=inline diff --git a/Constructor/codo.cpp b/Constructor/codo.cpp index baa3aaa..a7f1502 100644 --- a/Constructor/codo.cpp +++ b/Constructor/codo.cpp @@ -18,7 +18,7 @@ Codo::~Codo() bool Codo::on_button_press_event(GdkEventButton *event) { - if (event->type == GDK_2BUTTON_PRESS){ + if ((event->type == GDK_BUTTON_PRESS) && ( event->button == 3)){ image = null; //como hago para actualizar????? image->render_to_drawable(get_window(),get_style()->get_black_gc(),0,0,0,0,image->get_width(),image->get_height(),Gdk::RGB_DITHER_NONE,0,0); imgActual++; @@ -36,6 +36,7 @@ bool Codo::on_button_press_event(GdkEventButton *event) imgActual = 0; image = imageN; } + set_size_request(image->get_width(),image->get_height()); image->render_to_drawable(get_window(),get_style()->get_black_gc(),0,0,0,0,image->get_width(),image->get_height(),Gdk::RGB_DITHER_NONE,0,0); } return true;